Multiple Choice
Which of the following correctly declares and initializes alpha to be an array of four rows and three columns with the component type int?
A) int alpha[4][3] = {{0,1,2} {1,2,3} {2,3,4} {3,4,5}};
B) int alpha[4][3] = {0,1,2; 1,2,3; 2,3,4; 3,4,5};
C) int alpha[4][3] = {0,1,2: 1,2,3: 2,3,4: 3,4,5};
D) int alpha[4][3] = {{0,1,2}, {1,2,3}, {2,3,4}, {3,4,5}};
Correct Answer:

Verified
Correct Answer:
Verified
Q14: All components of an array are of
Q15: Arrays can be passed as parameters to
Q16: What is the output of the following
Q17: In C++, the null character is represented
Q18: For a list of length n, the
Q20: What is the output of the following
Q21: Which of the following correctly declares name
Q22: The _ of an array is the
Q23: Consider the following statement: double alpha[10][5];.The number
Q24: Consider the following declaration: char str[15];.Which of