

InterviewSolution
Saved Bookmarks
1. |
Find the range of { 2 , 7 , 6 , 4 , 3 , 8 , 5 , 12}. |
Answer» By arranging the given data in the ascending order . We have , { 2 , 3 , 4 , 5 , 6 , 7 , 8 , 12} `therefore` Range = (Maximum value ) - (Minimumn value ) = 12 - 2= 10 . |
|