Question: Create a Java Application in NetBeans with the following two classes. A class StudentProfile with the following private attributes: Student Name Quizzes scores (out of
Create a Java Application in NetBeans with the following two classes.
- A class StudentProfile with the following private attributes:
- Student Name
- Quizzes scores (out of 20)
- Homework score (out of 20)
- Mid score (out of 30)
- Fin Ex score (out of 30)
The class StudentProfile should include the following methods:
- Constructor/s
- Accessors and mutators methods
- Method to return the letter grade of a StudentProfile object.
- Another Java class called TestStudent with the main() method:
- In the main(), read from file studentsScores.data scores of several students. This is an example data:
Ahmed Saleh 19 20 27 22
Ameen Nagi 11 9 12 8
Amal Ali 17 16 25 30
Asma Saeed 18 13 10 29
- Create Objects for each Student
- Change the value of Quizzes of Ameen Nagi to 15
- Print out to a file all the students total scores and letter grades
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
