i had a quiz ,im confused about answer..can you please clarify which of the following is true? with reason
1. int a[ ][ ] ={{2,3},{3,4},{4,5}};
i. It will create a 3*2 matrix and initialize it
ii. It will create a 3*2 empty matrix
iii. It will actually create a single dimensional array with six values
iv. None of the above
2. int a[2][2] ={2,3,3,4,4,5};
i. Will create a 2*2 matrix of integers initialized with first four elements
ii. Will generate a run time error
iii. Will generate a compile time error
iv. None of the above
3. char a[3][2] ={‘a’,’\0’, ‘b’,’\0’, ‘c’,’\0’};
cout << *a ;
i. Will print “abc”
ii. Will print “a”
iii. Will print “b”
iv. Will print “c”
v. None of the above