Question: Java program 3 tests in total n = test number m= marks Sample Input Student Name: Sam Smith Marks for Sam Test 1: 7 Test
Java program

3 tests in total
n = test number
m= marks
Sample Input
Student Name: Sam Smith Marks for Sam Test 1: 7 Test 2: 9 Test 3: 10
Sample Output
Students M1 M2 M3 Total Sam Smith 7 9 10 26 Alex Brown 6 3 8 17 Josh Mason 5 4 8 17
Implement a simple grade book. Create a Student class which can hold a Students First Name, Last Name and Marks in three assessments. Provide required get and set methods. Student FirstName / LastName / Marks[] SetName() / GetName() SetMark(n,m) / GetMark(n) GetTotalMarks() Create a GradeBook class which can hold a bunch of Student objects and can perform data input and output operations for students. GradeBook Student[] Datalnput() / Print() Write a GradeBookTester class having a main method to test the GradeBook. GradeBookTester main()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
