DIM VALUE(1 TO 5)

Answer:

Each item is a floating point number, because the array name does not end with a special character.

An Array of Floating point Numbers

Floating point numbers are like the numbers used by an ordinary electronic calculator. It can have a fractional part, like 24.802, or have zeros in the fractional part, like 13.0. Here is a sample program that uses a floating point array:

DIM VALUE(1 TO 5)               '  Ask for an array of floating point numbers
LET VALUE(1) = 19.234           '  Put data into the first slot of the array
PRINT "First slot:", VALUE(1)   '  Print out the first slot
END

QUESTION 3:

What does the program write to the monitor?