Question: IN C++ ASAP Write an OBJECT-ORIENTED PROGRAMMING using class Set to display the content of an array named set in original order and reverse order

IN C++ ASAP Write an OBJECT-ORIENTED PROGRAMMING using class Set to displayIN C++ ASAP

Write an OBJECT-ORIENTED PROGRAMMING using class Set to display the content of an array named set in original order and reverse order and compute the set's standard deviation. 1) The set has a size of 8 and the elements are {5,10,15,20,25,30,35,40}. The program must have three programmer defined functions to perform the above- mentioned tasks and the function prototypes are as follow: void numbersinset(int set[], int SIZE); void numbersinreverse(int set[], int SIZE); float calculate SD(int set[], int SIZE); The standard deviation can be calculated using the following equation: 2(x - 1)^ = N or standard deviation of the set array N = the size of the set array Xi = each value from the set array u = the mean of the set array All the functions must be called from the main function using class and objects. You must use pointers in all of the functions to access the array elements. The program output should look as follow: The numbers in set are: 5 10 15 20 25 30 35 40 The numbers in the reverse order: 40 35 30 25 20 15 10 15 The standard deviation is: 22.5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!