Pay for 40 hours at 5 = 200 Pay for 30 hours at 6 = 180
The contents of a variable can be replaced many times. Examine the following program:
' Changing the contents of VALUE ' LET VALUE = 1 PRINT VALUE LET VALUE = 2 PRINT VALUE LET VALUE = 3 PRINT VALUE END
What will the program write to the monitor?