Answer:

Yes, there are almost always many ways to write a program.

Modified Program

Here is almost the same program, but with a different test in the IF statement:

PRINT "Number of Copies", "Price"

FOR COPIES = 1 TO 50

    ' per copy price calculation
    IF COPIES  >= ____THEN
       LET PERCOPY = _______
    ELSE
       LET PERCOPY = _______
    END IF

    ' print a line of the table
    PRINT  COPIES, COPIES * PERCOPY

NEXT COPIES
'
END

Remember the cost per copy:

QUESTION 15:

Fill in the three blanks so that the program matches the price schedule.