|
| Which of the following array definitions defines an array with three rows and two columns?
-
int [][] x = {{5, 5}, {5, 5}};
-
int [][] x = {{5, 5, 5}, {5, 5, 5}};
-
int [][] x = {{5, 5}, {5, 5}, {5, 5}};
-
int [][] x = {5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5};
-
int [][] x = {{5, 5, 5}, {5, 5, 5}, {5, 5, 5}};
|