MCQOPTIONS
Saved Bookmarks
| 1. |
Which of these is an incorrect array declaration? |
| A. | int x[] = new int[5] |
| B. | int [] arr = new int[5] |
| C. | intarr[] = new int[5] |
| D. | int x[] = int [5] new |
| Answer» E. | |