InterviewSolution
Saved Bookmarks
| 1. |
Find the mean of first five natural numbers. |
|
Answer» The first five natural number are 1, 2, 3, 4 and 5. ∴mean = (sum of the given numbers)/ (number of the given numbers) Then, Sum of the five natural numbers, = 1 + 2 + 3 + 4 + 5 = 15 Number of the given number = 5 Now, mean = 15 / 5 = 3 Hence, the mean of the five natural numbers is 3. |
|