The standard deviation of a list of numbers is a measure of


Question: The standard deviation of a list of numbers is a measure of how much the numbers deviate from the average. If the standard deviation is small, the numbers are clustered close to the average. If the standard deviation is large, the numbers are scattered far from the average. The standard deviation of a list of numbers n1, n2, n3, and so forth is defined as the square root of the average of the following numbers:

(n1 - a)2, (n2 - a)2, (n3 - a)2, and so forth.

The number a is the average of the numbers n1, n2, n3, and so forth. Define a static method that takes a partially filled array of numbers as its argument and returns the standard deviation of the numbers in the partially filled array. Because a partially filled array requires two arguments, the method should actually have two formal parameters, an array parameter and a formal parameter of type int that gives the number of array positions used. The numbers in the array should be of type double. Write a suitable test program for your method.

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: The standard deviation of a list of numbers is a measure of
Reference No:- TGS02404593

Now Priced at $15 (50% Discount)

Recommended (91%)

Rated (4.3/5)