1.

Explain any five built in functions used in ESS with examples. 

Answer»

The sum(), product() and power() functions are the three mathematical functions, max() and min() functions are the statistical functions.

  • The sum() function is used to find the total. For example, = sum(2, 5, 7) then the output is 14.
  • The product() function is used to find the multiplication i.e., = product(2, 5) then the output is 10.
  • The power function is used to find the exponents i.e., = power(2, 4) then the output is 16.
  • The max() function is used to find the maximum values in the series i.e., =max(5, 2, 10, 3, 6), output is 10 
  • The min() function is used to find the minimum value in the series i.e., =min(5, 2, 10, 3, 6), output is 2.


Discussion

No Comment Found

Related InterviewSolutions