What is the length of array csGrades at the end of main()? p…
What is the length of array csGrades at the end of main()? public static int addGrade(int[] allGrades, int grade, int listSize) { allGrades[listSize] = grade; ++listSize; return listSize;}public static void main(String[] args) { final int MAX_GRADES = 100; int[] courseGrades = new int[MAX_GRADES]; int numGrades = 0; numGrades = addGrade(csGrades, 74, numGrades); numGrades = addGrade(csGrades, 74, numGrades); numGrades = addGrade(csGrades, 74, numGrades);}
Read Details