MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is the correct way to declare a multidimensional array in Java? |
| A. | int[] arr; |
| B. | int arr[[]]; |
| C. | int[][]arr; |
| D. | int[[]] arr; |
| Answer» D. int[[]] arr; | |