Question: Create a Java Application in NetBeans with the following two classes. 1. A class StudentProfile with the following private attributes: a. Student Name b. Quizzes
Create a Java Application in NetBeans with the following two classes.
1. A class StudentProfile with the following private attributes:
a. Student Name
b. Quizzes scores (out of 20)
c. Homework score (out of 20)
d. Midterm score (out of 30)
e. Final Exam score (out of 30)
The class StudentProfile should include the following methods:
f. Constructor/s
g. Accessors and mutators methods
h. Method to return the letter grade of a StudentProfile object.
2. Another Java class called TestStudent with the main() method:
a. 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
b. Create Objects for each Student
c. Change the value of Quizzes of Ameen Nagi to 15
d. Print out to a file all the students total scores and letter grades
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
