

InterviewSolution
Saved Bookmarks
1. |
Find the median of the data 5, 8 , 4, 12 , 16 and 10 . |
Answer» Arranging the given data in ascending order , we have 4, 5 , 8 , 10 , 12 , 16. As the given number of values is even , we have two middle values . Those are `((n)/(2))`th and `((n)/(2) + 1)` th observations . Those are 8 and 10 . `therefore` Median of the data = Average of 8 and 10 . = `(8+ 10)/(2) = 9`. |
|