InterviewSolution
Saved Bookmarks
| 1. |
The mode and median of the data 6, 8, 7, 0, 6, 8, 7, 8 is:1). 7 and 82). 6 and 73). 8 and 74). 6 and 8 |
|
Answer» The mode is the NUMBER that is repeated more often than any other, so 8 is the mode. The Median ?- If the TOTAL number of NUMBERS(n) is an odd number, then: Median = (n + 1)/2th term If the total number of the numbers(n) is an even number, then the formula is given below? Median = [(n/2)th term + {(n/2) + 1}th term]/2 The median is the middle value, so to rewrite the list in order? 0, 6, 6, 7, 7, 8, 8, 8 There are eight numbers in the list, So, median = [(8/2)th term + {(8/2) + 1}th term]/2 = [4th term + 5th term]/2 = (7 + 7)/2 = 14/2 = 7 |
|