

InterviewSolution
Saved Bookmarks
1. |
Find the mode of 2, 5, 5, 1, 3, 2, 2, 1, 3, 5, 3. |
Answer» Arranging the data in ascending order: 1, 1, 2, 2, 2, 3, 3, 3, 5, 5, 5 Here 2, 3 and 5 occurs 3 times each. Which is the maximum number of times. ∴ Mode is 2, 3 and 5. |
|