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?
Look at the following code sample:
```
const int ROWS = 8;
const int COLS = 2;
int[,] table = new int[ROWS, COLS];
```
a. table[1, 2] = 25;
b. table[0, 1] = 25;
c. table[2, 1] = 25;
d. table[1, 0] = 25;
b. table[0, 1] = 25;
Computer Science & Information Technology
You might also like to view...
In mail merge, the list of variable information, such as names and addresses, that is merged with a main document to create customized form letters or labels is the:
a. data source b. mailing list c. label
Computer Science & Information Technology
Typically the first line of a citation in a bibliography begins at the left margin, with all other lines indented. That indent style is called a ________ indent
A) first-line B) hanging C) left D) right
Computer Science & Information Technology