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
Step: 1
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started