Solved

How Would You Create an Array Named SomeNumbers That Holds

Question 67

Multiple Choice

How would you create an array named someNumbers that holds three rows and four columns?


A) int[][] someNumbers = new int[4][3];
B) int[][] someNumbers = new int[3][4];
C) int[] someNumbers = new int[3][4];
D) double[][] someNumbers = new int[3][4];

Correct Answer:

verifed

Verified

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

Related Questions