Answer:

First slot:    19.234
Next  slot:    0.0

Filling in some more Slots

Here is the program (again) will a few more statements added:

DIM VALUE(1 TO 5)               '  Ask for an array of floating point numbers
                                '
LET VALUE(1) = 19.234           '  Put  19.234 into the first slot of the array
LET ________ = -12.6            '  Put -12.6   into the second slot
LET VALUE(3) = _____            '  Put  99.85  into the third slot

PRINT "First slot:", VALUE(1)   '  Print out the first  slot
PRINT "2nd   slot:", VALUE(2)   '  Print out the second slot
PRINT "3rd   slot:", ________   '  Print out the third  slot
END

QUESTION 5:

Fill in the blanks so that the program does what the comments describe.