InterviewSolution
Saved Bookmarks
| 1. |
Find the range of given data:36,56,17,44,26,47,58,67,40,22 |
| Answer» The\xa0Range\xa0is the difference between the lowest and highest values. Example: In {4, 6, 9, 3, 7} the lowest value is 3, and the highest is 9. So the\xa0range\xa0is 9 − 3 = 6. It is that simple!\xa0In the given sumHighest value = 67Lowest value = 17Range = Highest - Lowest value 67 - 17Therefore rANGE = 50 | |