Answer:

' Two lines printed again and again
DO
  PRINT "Hello World"
  PRINT "How are You?"
LOOP
END

The two statements of the loop body will be repeated in order. The monitor screen will look like:

Hello World
How are You?
Hello World
How are You?
Hello World
How are You?
Hello World
How are You?

   . . . and so on

Currency Conversion Story Problem

When you visit London, England, prices are given in pounds sterling. With these unfamiliar prices it is hard to tell how much you are spending. If you had a portable computer you could write a program that converted pounds to dollars. Say that there are 1.79 dollars per pound.

A ticket for Cats costs for 20 pounds. How much is that in dollars?

20 * 1.79 = 35.80 

QUESTION 19:

Write a program that:

(For now, write the program so that it does just this, then quits.)