Question: 1. File Student.java contains an incomplete definition for the Student class. Save it to your directory and complete the class definition as follows: a. Declare

1. File Student.java contains an incomplete definition for the Student class. Save it to your directory and complete the class definition as follows:

a. Declare the instance data (name, score for test1, and score for test2).

b. Create a Scanner object for reading in the scores.

c. Add the missing method headers.

d. Add the missing method bodies.

// ************************************************************

// Student.java

//

// Define a student class that stores name, score on test 1, and

// score on test 2. Methods prompt for and read in grades,

// compute the average, and return a string containing student's info.

// ************************************************************

import java.util.Scanner;

public class Student

{

//declare instance data

// ---------------------------------------------

//constructor

// ---------------------------------------------

public Student(String studentName)

{

//add body of constructor

}

// ---------------------------------------------

//inputGrades: prompt for and read in student's grades for test1 and test2.

//Use name in prompts, e.g., "Enter's Joe's score for test1".

// ---------------------------------------------

public void inputGrades()

{

//add body of inputGrades

}

// ---------------------------------------------

//getAverage: compute and return the student's test average

// ---------------------------------------------

//add header for getAverage

{

//add body of getAverage

}

// ---------------------------------------------

//getName: print the student's name

// ---------------------------------------------

//add header for printName

{

//add body of printName

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!