Q4
What is the correct way to initialize a two-dimensional array in Java?
A.
int[][] myArray = {{1, 2}, {3, 4}};
AnswerB.
int[2][2] myArray = {{1, 2}, {3, 4}};
C.
int[2][2] myArray; myArray[0][0] = 1; myArray[0][1] = 2; myArray[1][0] = 3; myArray[1][1] = 4;
D.
None of the above
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board