Question- Implement a class Student. For the purpose of this exercise, a student has a name and a total quiz score. Supply a suitable constructor and methods getName( ), addQuiz(int score), getTotalScore( ), and getAverageScore ( ).
To evaluate the latter, you also need to store the number of quizzes that the student took.
Supply a studentTester class that tests all methods.
You have to prepare suitable constructor and methods and implement in this class.