Hi
This is a question from one of the mock
test.
In the following question the correct answer according to me are C,D,E.
But the options for answer were given in the form of radio buttons. But how will I select the three correct answer in this?
Which correctly create a two dimensional array of integers?
A.int a[][] = new int[10,10]
B.int a[10][10] = new int[][];
C.int a[][] = new int [10][10];
D.int []a[] = new int [10][10];
E.int []a[] = new int[10][10];