InterviewSolution
Saved Bookmarks
| 1. |
Find the average of first 40 natural numbers? |
|
Answer» Sum of first n natural numbers=n(n+1)/2; So,sum of 40 natural numbers=(40*41)/2 = 820. Therefore the required average=(820/40) = 20.5. |
|