InterviewSolution
Saved Bookmarks
| 1. |
Find the mean of first six odd natural numbers. |
|
Answer» The first six odd natural number are 1, 3, 5, 7, 9 and 11. ∴mean = (sum of the given numbers)/ (number of the given numbers) Then, Sum of the six odd natural numbers, = 1 + 3 + 5 + 7 + 9 + 11 = 36 Number of the given number = 6 Now, mean = 36 / 6 = 6 Hence, the mean of the six odd natural numbers is 6. |
|