Which of the following lines of code accesses the second element of the first array in a two-dimensional array of integers, numbers, and stores the result in a variable called num?

a)```
num = numbers[1][2];
```
b)```
num = numbers[0][1];
```
c)```
num = numbers.getElement(1, 2);
```
d)```
num = numbers.getElement(0, 1);
```
e)```
none of the above are correct
```

b)```
num = numbers[0][1];
```

Computer Science & Information Technology

You might also like to view...

In Side by Side view, ________ scrolls both windows when you scroll either the vertical or horizontal scroll bar in either window

Fill in the blank(s) with correct word

Computer Science & Information Technology

Computer science is the study of all of the following EXCEPT ____.

a. the formal iterations of algorithms b. the linguistic realizations of algorithms c. the formal and mathematical properties of algorithms d. the hardware realizations of algorithms

Computer Science & Information Technology