InterviewSolution
Saved Bookmarks
| 1. |
Find the mean of the first ten odd numbers. |
|
Answer» We know that First ten odd numbers = 1, 3, 5, 7, 9, 11, 13, 15, 17 and 19 So we get Mean = sum of numbers/ total numbers By substituting the values Mean = (1 + 3 + 5 + 7 + 9 + 11 + 13 + 15 + 17 + 19)/10 On further calculation Mean = 100/10 By division Mean = 10 Therefore, the mean of first ten odd numbers is 10. |
|