Question: ***PLEASE DO IT IN C++**** -Objective The purpose of this assignment is for students to get familiar with C++ and to have a better understanding



***PLEASE DO IT IN C++****
-Objective The purpose of this assignment is for students to get familiar with C++ and to have a better understanding of loops and have a basic understanding of Arrays. 2 - Problem Write a program that: Creates two finite arrays of size 10 These arrays will serve as a storing mechanism for student grades in Classes A and B Uses a loop to populate the arrays with randomly generated numbers from 0 to 100.These numbers will represent student grades. Compute average grade of each class. Finally,output a message with two averages and best class. (Class A average is: 65.43, class B average is: 68.90. Class B wins!") Please Note: To generate random numbers you will use the function srando. srand function takes a seed value. You are required to ask the user to input a seed value. And please call srandO function using the seed value entered by the user For example: int seed_value: cin>>seed_value: srand (seed_value): // this is how srand () function will get called in your code 3- Sample Output For example, suppose the array for class A looks like int class_A [10] (10, 20, 30,40,50,60,70,80,90,10 Suppose the array for class B looks like int class.B [10] (21, 10, 19, 17,80, 100, 50, 30, 22, 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
