InterviewSolution
Saved Bookmarks
| 1. |
Find the mode of the data 2, 4, 6, 4, 6, 7, 6, 7, aud 8A. 4B. 6C. 7D. 8 |
|
Answer» Correct Answer - B `{:("Observation","Frequency"),(2,1),(4,2),(6,3),(7,2),(8,1):}` 6 has the highest frequency. `therefore` Mode = 6 Hence , the correct option is ( b) |
|