What values are assigned?
l
double[] temps = new double[5];
// Allocates
array
l
int m;
l
l
for (m = 0; m <
temps.length
; m++)
l
temps[m] = 100.0 + m * 0.2;
l
l
l
What is
length
?
l
temps[0]
temps[1]
temps[2]
temps[3]
temps[4]
?
?
?
?
?