InterviewSolution
Saved Bookmarks
| 1. |
Write the format of the functions used in MS Excel to perform the following tasks. 1. To calculate the sum of first four multiples of 5 2. To find the sum of all the prime numbers from 1 to 10 |
|
Answer» To find the sum of all the prime NUMBERS from 1 to 10.Answer=SUM(2,3,5,7)To calculate the sum of first four MULTIPLES of 5= SUM(5 , 10 ,15 ,20 ,25) |
|