

InterviewSolution
Saved Bookmarks
1. |
Find the median of 7,6,5,3,9,4,3. |
Answer» Arranging the data in ascending order we get 3,3,4,5,6,7,9 The number of observations `n = 7` which is odd `therefore " "Median"" = ((n+1)/(2))th " observations"` `= ((7+1)/(2))th" "observations"` `=4th" observations"` `=5` |
|