Question: The following code is meant to find the largest value in a 2 - d array. int [ ] [ ] vals = / *

The following code is meant to find the largest value in a 2-d array.
int[][] vals =/* Initialization not Shown */
int m =/* Initialization not Shown */
for (int i =0; i < vals.length; i++)
{
for (int j =0; j < vals[i].length; j++)
{
if (vals[i][j]> m)
m = vals[i][j];
}
}
System.out.println(m);
What should m be set to in order for the code to work as intended?
Group of answer choices
-100000
100000
Integer.MIN_VALUE
Integer.MAX_VALUE
0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!