countAvailableGrades method

int countAvailableGrades()

Count the available grades in the grading scale. Usually around 7.

Implementation

int countAvailableGrades() {
  return gradesTallies.length;
}