Answered step by step
Verified Expert Solution
Question
1 Approved Answer
= 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
= 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: (x- N o = standard deviation of the set array N = the size of the set array x = 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: Write a programming in 5 10 15 20 25 30 35 40 The numbers in the reverse order: C++ 40 35 30 25 20 15 10 15 Including:- The standard deviation is: 22.5 1) Functions 2) Arrays 3) Array of Objects 4) Pointers 5) Classes 6) Mathematical Equations
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started