Multiple Choice
Given the following two-dimensional array declaration, which statement is true?
int[ ][ ] numbers = new int[6][9];
A) The numbers array has 54 rows.
B) The numbers array has 15 rows.
C) The numbers array has 6 rows and 9 columns.
D) The numbers array has 6 columns and 9 rows.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q47: The _ method removes an item from
Q48: A sorting algorithm is used to locate
Q49: In memory, an array of String objects
Q50: The binary search algorithm _.<br>A) is less
Q51: If a[ ] and b[ ] are
Q53: What would be the result after the
Q54: Which of the following for loops is
Q55: Which of the following ArrayList class methods
Q56: What is the value of scores[2][3] in
Q57: Which of the following statements is(are) true