Computer Science, asked by rahimayesha460, 5 hours ago

write the output of the following excel function SUM (2,3,6) ,SQRT (49) , power (3,3) , Max (8,6,2,12) , Today ()​

Answers

Answered by sakshichaudhari0300
0

Answer:

SUM(2, 3, 6) = 11

SQRT(49) = 7

power(3, 3) = 27

max(8, 6, 2, 12) = 12

Today() = 03-Oct-2021 (gives today's date)

Explanation:

Sum calculates the sum of all the numbers passed as the parameter.

SQRT calculates the square root of the number given in the bracket.

power calculates the power of 1st number raised to 2nd number i.e. 3³ = 3x3x3 = 27

Max gives the maximum number from the given list, i.e max of 8 6 2, and 12 which is 12.

Today() return today's date and it is changed every time the worksheet is changed or opened.

Similar questions