What is the output of the following program?
```
public class Test {
public static void main(String[] args) {
int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}};
int v = values[0][0];
for (int[] list : values)
for (int element : list)
if (v > element)
v = element;
System.out.print(v);
}
}
```
a. 1
b. 3
c. 5
d. 6
e. 33
a
Computer Science & Information Technology
You might also like to view...
When you are searching for a numbered street address on Maple, but aren't sure whether it's Maple Avenue, Maple Street, or Maple Way, which of the following criteria would you use?
A) Maple* B) Maple C) *Maple* D) ???Maple*
Computer Science & Information Technology
Bulleted text cannot be added to the Title Only slide layout
Indicate whether the statement is true or false
Computer Science & Information Technology