| CX-310-066_draft Exam |
| CX-310-066_draft - Exam Information |
| Question of the day |
Which of these array declarations and instantiations are not legal?
Answer(s)
int []a[] = new int[4][4];
int a[][] = new int[4][4];
int []a[] = new int [4][];
int[][] a = new int[4][4];