Write outputs of the following:
1. INT(501.69)
2. POWER(4,3)
3. LEN(“Welcome to Excel”)
4. MOD(15,4)
5. SQRT(49)
Answers
Answered by
0
Answer:
- 501
- 64
- 16
- 3
- 7
Step-by-step explanation:
- Int returns the answer in integer form without any decimal.
- power function in this case took 4 raised to 3 as input and hence the answer 64.
- len function calculates the number of characters including spaces.
- mod function returns the remainder after performing division of two numbers. In this case 15 divided by 4 gives 3 as remainder.
- sqrt function finds the square root of a number.
Similar questions