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...

A program that executes whenever a computer starts up, ensuring that the virus will be loaded into memory immediately, even before some virus protection programs can load is called a ________

A) boot-sector virus B) time bomb C) logic bomb D) multipartite virus

Computer Science & Information Technology

One way to draw a reader's attention and provide visual interest to a document is to insert a(n) ________

A) footer B) ScreenTip C) clip art image D) field

Computer Science & Information Technology

Reports have a grouping feature allowing records to be presented in sets

Indicate whether the statement is true or false

Computer Science & Information Technology

The number of bits processed at one time is the processor's

A) Letter size B) Word size C) Paragraph size D) Page size

Computer Science & Information Technology