Question: The software I use is Eclipse, please teach me how to write it on eclipse. In business applications, you are often asked to compute the
The software I use is Eclipse, please teach me how to write it on eclipse.

In business applications, you are often asked to compute the mean and standard deviation of data. The mean is simply the average of the numbers. The standard deviation is a statistic that tells you how tightly all the data are clustered around the mean in a set of data. Compute the standard deviation of numbers. Please use the following formula to compute the standard deviation of n numbers 1. standard deviation i=1(Xi-mean)2 To compute the standard deviation using the above formula, you have to store the individual numbers using an array, so they can be used after the mean is obtained Your program should contain the following methods ** to compute the deviation of double values public static double deviation(double[] x) to compute the mean of an array of double values** public static double mean(double[] x) write a test program that prompts the user to enter 10 numbers and displays the mean and standard deviation, as presented in the following sample run Enter 10 numbers 1.9 2.5 3.7 2 1 63452 The mean is 3.11 The standard deviation is 1.55738
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
