III. Display the output of the following programs:
1.
CLS
P = 5
START:
PRINT P
P = P + 5
IF P <= 50 THEN GOTO START:
ENd
Answers
Answered by
3
Answer:
It will print from 5, 6, 7, 8, 9, 10, 11, 12, 13, 14.......48, 49, 50
Explanation:
use while loop for this to simplify
Similar questions