A

Admin • 828.03K Points
Coach

Q. What is the correct way to initialize a two-dimensional array in Java?

  • (A) int[][] myArray = {{1, 2}, {3, 4}};
  • (B) 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
  • Correct Answer - Option(A)
  • Views: 15
  • Filed under category Java
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.