| 1. |
Explain any five built-in functions of ESS? |
|
Answer» 1. The sum(): It is used to find the addition for a range of cells. For example = sum(A1 : A20) 2. The product() : It calculates the multiplication of values in the specified cells. For example, = product(B1:B5). 3. The max(): It finds the maximum element in the range of cells or sequence of values. For example, = max( 10, 20, 11, 45, 30) gives 45 as the output. 4. The min(): It finds the minimum element in the range of cells or sequence of values. For example, = min(10, 20, 11x, 45, 5, 30) gives 5 as the output. 5. The count(): It counts the number of elements present in the range of cells and sequence of values. For example, The Max (): It finds the maximum element in the range of cells or sequence of values. |
|