Examlex

Solved

Look at the Following Code Sample: Const Int SIZE =

question 70

Multiple Choice

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;
}
When the loop is finished stepping through the values array, what value will be stored in values[0]?


Definitions:

Related Questions