Sue Evans
Press space bar for next screen
George 95 Martha 83 Dick 57 Jane 99 John 17 Kate 17 Homer 70 Marge 77
Prompt for a name of a student in the file and print if they are above or below the mean.
Find the standard deviation of the scores.
The standard deviation is a measure of how spread out the data is relative to the mean. If the data is tightly clustered around the mean then the standard deviation is small. When the data is more spread out, the standard deviation is large.
Write a function findStdDev() that calculates the standard deviation of the scores. Here's the formula:
where bar x represents the mean,
x i represents the ith data value,
and n is the number of data values.
Sigma means the sum of whatever follows it.