Fill This Form To Receive Instant Help
Homework answers / question archive / A simple course management system models a student's information with a name and a set of scores
A simple course management system models a student's information with a name and a set of scores. This system should be able to createa student object with a given name and a number of scores, all of which will be 0 at startup. The system should be able to access or replace a score at a given position (counting from 0), obtain the number of scores, obtain the highest score, obtain the average score, and obtain the student's name. In addition, the system should have a method to display name, scores, highest score and average score of a student. Please define a class named Student to implement this course management system.