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
Answer: C
Computer Science & Information Technology
You might also like to view...
To return to the top of a document in OpenOffice Writer, press ________
A) Ctrl + Home B) Alt + Home C) Alt + PgUp D) Ctrl + PgUp
Computer Science & Information Technology
A clean install is
A) One where there has been no problem experienced B) One where the reinstallation happens the first time tried C) One where remote access is needed to complete the installation D) A reinstallation of the operating system
Computer Science & Information Technology