Solved

Look at the Following Code Sample: Const Int ROWS =

Question 8

Multiple Choice

Look at the following code sample: const int ROWS = 8;
Const int COLS = 2;
Int[,] table = new int[ROWS, COLS];
Which one of the following statements stores the value 25 in the element located at the first row and second column of the table array?


A) table[1, 2] = 25;
B) table[0, 1] = 25;
C) table[2, 1] = 25;
D) table[1, 0] = 25;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions