Discuss the below:
Q: Design and write a C++ program that reads a set of scores from the file and outputs their mean and standard deviation on standard output. Use the following sets of input for testing the program.
Data: 56, 35, 87, 18, -34, 46, 0
Data: 82, 23, 52, 83, 91, 48, 72, 78, 74, 0
Please note that 0 is a sentinel value (indicating the end of numbers input), so it should not be used in computations.