Answer:
The BASIC program is as follows:
SUM = 0
FOR I = 1 TO 20
INPUT SCORES
SUM = SUM + SCORES
NEXT I
AVERAGE = SUM/20
PRINT AVERAGE
Step-by-step explanation:
This initializes sum to 0
SUM = 0
This iterates through 20
FOR I = 1 TO 20
This reads each score
INPUT SCORES
This calculates the total scores
SUM = SUM + SCORES
NEXT I
This calculates the average
AVERAGE = SUM/20
This prints the calculated average
PRINT AVERAGE