Answer:

Pay for    40   hours at  5   =   200
Pay for    30   hours at  6   =   180

Variable's Contents Replaced Many Times

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

QUESTION 23:

What will the program write to the monitor?