Use the following code without changing anything to to produce the output that is attached. public class GradeBookTest { public static void main( String[] args ) { // two-dimensional array of student grades int[][] gradesArray = { { 87, 96, 70 }, { 68, 87, 90 }, { 94, 100, 90 }, { 100, 81, 82 }, { 83, 65, 85 }, { 78, 87, 65 }, { 85, 75, 83 }, { 91, 94, 100 }, { 76, 72, 84 }, { 87, 93, 73 } }; processGrades(gradesArray); rowAverage(row) lowestGrade(gradesArray); maxGrade(gradesArray); } // end main } // end class GradeBookTest
Use the following code without changing anything to to produce the output that is attached.
public class GradeBookTest
{
public static void main( String[] args )
{
// two-dimensional array of student grades
int[][] gradesArray = { { 87, 96, 70 },
{ 68, 87, 90 },
{ 94, 100, 90 },
{ 100, 81, 82 },
{ 83, 65, 85 },
{ 78, 87, 65 },
{ 85, 75, 83 },
{ 91, 94, 100 },
{ 76, 72, 84 },
{ 87, 93, 73 } };
processGrades(gradesArray);
rowAverage(row)
lowestGrade(gradesArray);
maxGrade(gradesArray);
} // end main
} // end class GradeBookTest
![The grades are:
Test 1 Test 2 Test 3 Average
Student 1
87
96
70 84.33
Student 2
68
87
90 81.67
Student 3
94
100
90 94.67
Student 4
100
81
82 87.67
Student 5
83
65
85 77.67
Student 6
78
87
65 76.67
Student 7
85
75
83 81.00
Student 8
91
94
100 95.00
Student 9
76
72
84 77.33
Student 10
87
93
73 84.33
Lowest grade in the grade book is 65
Highest grade in the grade book is 100](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F64d9ce60-b001-4270-8dd6-e9babf85f2bf%2F93a9294b-d6d0-4e98-ae3a-0403310c7c96%2Fl9wa4m_processed.png&w=3840&q=75)
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 3 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)