When the loop is finished stepping through the values array, what value will be stored in values[0]?

Look at the following code sample:

```
const int SIZE = 10;
int[] values = new int[SIZE];
for (int index = 0; index < SIZE; index++)
{
values[index] = index + 1;
}


```

a. 10
b. 11
c. 0
d. 1

d. 1

Computer Science & Information Technology

You might also like to view...

To save a group as a picture, you point to the group and ________ to display the appropriate shortcut menu

A) double-click B) right-click C) press Ctrl and click D) click

Computer Science & Information Technology

To change margins for a document, use the ________ group on the PAGE LAYOUT tab

A) Page Layout B) Orientation C) Margins D) Page Setup

Computer Science & Information Technology