InterviewSolution
Saved Bookmarks
| 1. |
Find the mode of the data: 10, 8, 4, 7, 8, 11, 15, 8, 6, 8. |
|
Answer» Mode is the value of the variable which occurs most frequently. Arranging the given numbers in ascending order, we get 4, 6, 7, 8, 8, 8, 8, 10, 11, 15 Clearly, 8 occurs maximum number of times. Hence, mode of the given number is 8 |
|