InterviewSolution
Saved Bookmarks
| 1. |
Find the median of 20, 13, 18, 25, 6, 15, 21, 9, 16, 8, 22. |
|
Answer» By arranging the numbers in ascending order We get 6, 8, 9, 13, 15, 16, 18, 20, 21, 22, 25 We know that n = 11 is odd So we get Median = ½ (n + 1) th term By substituting the values Median = ½ (11 + 1) th term It can be written as Median = value of the 6th term = 16 We get Median = 16 |
|