InterviewSolution
Saved Bookmarks
| 1. |
The runs scored by 11 members of a cricket team are 15,29,43,13,31,50,20,0,27,56,34 find the median score. |
|
Answer» Arrranging the runs in an ascending order, we have 0,13,15,20,27,29,31,34,43,50,56 Here ,n=11, which is odd. Median sorce = value of `((11+1)/2)` th term = value of 6th term =29 Hence, the median score is 29. |
|