Answer:

' Ringside Weigh-in
'
PRINT "Enter the weight:"
INPUT WEIGHT
IF  WEIGHT >= 136 AND WEIGHT <= 147 THEN
  PRINT "Weight is OK"
ELSE
  PRINT "Weight is not OK"
END IF
'
END

A Run of the Program

The boxer must be heavy enough ( WEIGHT >= 136 ), and at the same time not too heavy (WEIGHT <= 147). The results of the two tests are combined with an AND.

QUESTION 11:

What will the monitor screen look like when the boxer's weight is 140?