Scenario:
A college is in desperate need of an automated test scoring system. Using C++, write a scoring system for the college and score the tests of at least five students.
|
To create the scoring system, follow the steps below:
- First ask for the number of questions in the test
- Then asks for the correct answers for each question. Note that multiple choice tests and questions will have answers from A to D.
- Ask for the number of students and process each student by asking for their name and then loop through the questions asking for the student's answer.
- Score each question.
- After the last question calculate the students score and display "Student 'insert student name' scored 10 out of 20 or 50%."
- Repeat until all the students have been scored.
- After all students are scored, insert a print a class list of all the student's results in the same manner as before.
- Save your assignment as a .cpp file. Place the .cpp file in a single zipped folder.