Given an array of ints named values, what does the following code do?
for (int i = 0; i < values.length; i++)
{
values[i] = i * i;
}
There are no hints for this question