Question
Write a Student class which keeps track of grades and generates a final mark. You should store: -3 quiz scores, an array of int between
Write a Student class which keeps track of grades and generates a final mark. You should store:
-3 quiz scores, an array of int between 0 and 20;
-1 midterm score, an int between 0 and 50;
- 1 final score, an int between 0 and 100;
- the overallScore (double) and letter grade (char).
also create the appropriate accessor and mutator methods.
Student should also include the methods:
public void calculateOverallScore() { }
Quizzes are worth 15% of the grade,
Midterm is worth 35% of the grade,
the Final is worth 50% of the grade.
public void finalLetterGrade() { }
100 ~ 90: A
90 ~ 80: B
70 ~ 80: C
60 ~ 70: D
0 ~ 60: F
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
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