In Java Provide a complete program that handles the entry and display of homework scores. As part of your program, provide a HwScore class that contains the points earned on a particular homework and also the maximum possible points on that homework. In order to keep track of the overall average, the HwScore class also contains the total points earned on all homework combined and the total possible points on all homework combined. In order to determine letter grades, the HwScore class specifies cutoff values for the A, B, C, and D letter grades. More specifically, the HwScore class should contain these constants and variables: • Named constants for the letter grade cutoffs: A = 0.9, B = 0.8, C = 0.7, D = 0.6 • Class variables named totalEarnedPoints and totalPossiblePoints • Instance variables named earnedPoints and possiblePoints The HwScore class should contain a two-parameter constructor that handles initializations for the earnedPoints and possiblePoints instance variables. Implement a printGrade method that prints a particular homework’s earned points, possible points, and letter grade. The letter grade is based on this scale: A ≥ 90%, B ≥ 80%, C ≥ 70%, D ≥ 60%, F < 60%. Implement a class method named printOverallGrade that prints the overall earned points, overall possible points, and overall letter grade. Use appropriate modifiers for methods. The modifiers we’ve discussed so far are private, public, and static. Use helping methods when appropriate. Provide a main driver method. It should: • Instantiate four HwScore objects and store them in the variables hw1, hw2, hw3, and hw4. In the instantiations, initialize the objects to these values: hw1: 26.5 earned points, 30 possible points hw2: 29 earned points, 27.5 possible points hw3: 0 earned points, 20 possible points hw4: 16 earned points, 20 possible points • For hw1, hw2, and hw3 (but not hw4), call printGrade. • Call printOverallGrade. Output, using the main driver method described above: On this homework, you earned 26.5 out of 30.0 possible points: B On this homework, you earned 29.0 out of 27.5 possible points: A On this homework, you earned 0.0 out of 20.0 possible points: F On all homework, you earned 71.5 out of 97.5 possible points: C

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

In Java

Provide a complete program that handles the entry and display of homework scores. As part of
your program, provide a HwScore class that contains the points earned on a particular homework
and also the maximum possible points on that homework. In order to keep track of the overall
average, the HwScore class also contains the total points earned on all homework combined and
the total possible points on all homework combined. In order to determine letter grades, the
HwScore class specifies cutoff values for the A, B, C, and D letter grades.
More specifically, the HwScore class should contain these constants and variables:
• Named constants for the letter grade cutoffs: A = 0.9, B = 0.8, C = 0.7, D = 0.6
• Class variables named totalEarnedPoints and totalPossiblePoints
• Instance variables named earnedPoints and possiblePoints
The HwScore class should contain a two-parameter constructor that handles initializations for
the earnedPoints and possiblePoints instance variables.
Implement a printGrade method that prints a particular homework’s earned points, possible
points, and letter grade. The letter grade is based on this scale: A ≥ 90%, B ≥ 80%, C ≥ 70%, D ≥
60%, F < 60%.
Implement a class method named printOverallGrade that prints the overall earned points,
overall possible points, and overall letter grade.
Use appropriate modifiers for methods. The modifiers we’ve discussed so far are private,
public, and static. Use helping methods when appropriate.
Provide a main driver method. It should:
• Instantiate four HwScore objects and store them in the variables hw1, hw2, hw3, and hw4.
In the instantiations, initialize the objects to these values:
hw1: 26.5 earned points, 30 possible points
hw2: 29 earned points, 27.5 possible points
hw3: 0 earned points, 20 possible points
hw4: 16 earned points, 20 possible points
• For hw1, hw2, and hw3 (but not hw4), call printGrade.
• Call printOverallGrade.
Output, using the main driver method described above:
On this homework, you earned 26.5 out of 30.0 possible points: B
On this homework, you earned 29.0 out of 27.5 possible points: A
On this homework, you earned 0.0 out of 20.0 possible points: F
On all homework, you earned 71.5 out of 97.5 possible points: C

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Adjacency Matrix
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education