Answered step by step
Verified Expert Solution
Link Copied!
Question
1 Approved Answer

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

blur-text-image
Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Pro Database Migration To Azure Data Modernization For The Enterprise

Authors: Kevin Kline, Denis McDowell, Dustin Dorsey, Matt Gordon

1st Edition

1484282299, 978-1484282298

More Books

Students explore these related Databases questions