

InterviewSolution
Saved Bookmarks
1. |
Find the median of the data 1, 3, 7, 16, 0, 19, 7, 4, 3. |
Answer» Arranging the given data in ascending order: 0, 1, 3, 3, 4, 7, 7, 16, 19 Number of terms n = 9, which is odd. ∴ Median = (\(\frac{n+1}{2}\))th term = (\(\frac{9+1}{2}\))th term = (\(\frac{10}{2}\))th term = 5th term Hence Median = 4 |
|