LET OUNCES = GALLONS * 128 ' statement 4Statement 4 does 4 things:
Step one is performed because OUNCES has not been seen before in this program so memory must be found for it now.
After statement 4 memory looks like:
|
|
|
|
(Of course, there are many other things in memory, but we are not concerned with them now.)
Finally, the last statement is executed:
PRINT "glasses of soda =", OUNCES / 8 ' statement 5
What will this statement write to the monitor?