Solved

Consider the Following Code Snippet

Question 41

Multiple Choice

Consider the following code snippet:
Int[][] arr =
{
{ 13, 23, 33 },
{ 14, 24, 34 }
};
Identify the appropriate statement to display the value 24 from the given array?


A) System.out.println(arr[1][2]) ;
B) System.out.println(arr[2][2]) ;
C) System.out.println(arr[1][1]) ;
D) System.out.println(arr[2][1]) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions