- getAverageGrade() - Static method in class Student
-
getAverageGrade()
This class method returns the average grade of all students.
- getGrade() - Method in class Student
-
getGrade()
This instance method returns the student's grade.
- getHighestGrade() - Static method in class Student
-
getHighestGrade()
This class method returns the highest grade of all students.
- getID() - Method in class Student
-
getID()
This instance method returns the student ID.
- getLowestGrade() - Static method in class Student
-
getLowestGrade()
This class method returns the lowest grade of all students.
- getName() - Method in class Student
-
getName()
This instance method returns the student's full name (first + last).
- getNumberOfGrades() - Static method in class Student
-
getNumberOfGrades()
This class method returns the number of grades, in this case equivalent to the
number of students.
- getTotalGrade() - Static method in class Student
-
getTotalGrade()
This class method returns the sum of all the grades.
- GradeSimulator - Class in <Unnamed>
-
- GradeSimulator() - Constructor for class GradeSimulator
-