Create a c language program survey data analysis by getting the mean, median and mode of a survey given the 99 response below: 6,7,7,9,7,7,8,9,8,9,7,8,9,5,9,8,7,8,7,8,6,7,8,9,3,9,8,7,8,7,7,8,9,8,9,8,9,7,8,9,6 ,7,8,7,8,7,9,8,9,2,7,8,9,8,9,8,9,7,5,3,5,6,7,2,5,3,9,4,6,4,7,8,9,6,8,7,8,9,7,8,7, 4,4,2,5,3,8,7,5,6,4,5,6, 1,6,5,7,8,7 The mean is the average you're used to, where you add up all the numbers and then divide by the number of numbers. The median is the middle value in the list of numbers. To find the median, your numbers have to be sorted from smallest to largest, so you may have to rewrite your list before you can find the median. The mode is the value that occurs most often. If no number in the list is repeated, then there is no mode for the list. Show the frequency of responses to show the mode.
Create a c language program survey data analysis by getting the mean, median and mode of a survey given the 99 response below:
6,7,7,9,7,7,8,9,8,9,7,8,9,5,9,8,7,8,7,8,6,7,8,9,3,9,8,7,8,7,7,8,9,8,9,8,9,7,8,9,6 ,7,8,7,8,7,9,8,9,2,7,8,9,8,9,8,9,7,5,3,5,6,7,2,5,3,9,4,6,4,7,8,9,6,8,7,8,9,7,8,7, 4,4,2,5,3,8,7,5,6,4,5,6, 1,6,5,7,8,7
The mean is the average you're used to, where you add up all the numbers and then divide by the number of numbers.
The median is the middle value in the list of numbers. To find the median, your numbers have to be sorted from smallest to largest, so you may have to rewrite your list before you can find the median.
The mode is the value that occurs most often. If no number in the list is repeated, then there is no mode for the list. Show the frequency of responses to show the mode.
Step by step
Solved in 4 steps with 1 images