Multiple Choice
After the following statements execute,what are the contents of matrix?
int matrix[3][2];
Int j,k;
For (j = 0; j < 3; j++)
For (k = 0; k < 2; k++)
Matrix[j][k] = j + k;
A)
0 0
1 1
2 2
B)
0 1
2 3
4 5
C)
0 1
1 2
2 3
D)
1 1
2 2
3 3
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q9: Assume you have the following declaration char
Q15: Arrays can be passed as parameters to
Q25: In row order form, the _.<br>A) first
Q26: A collection of a fixed number of
Q30: Which of the following statements declares alpha
Q32: In a two-dimensional array, the elements are
Q41: Suppose list is a one dimensional array
Q44: Given the following declaration: int j;<br>int
Q45: Complete the following statement so that it
Q48: The header file string contains the function