How many times will the following loop be executed?
CLS
FOR I= 55 TO 36 STEP -2
PRINT "BHS"
NEXT I
END
Answers
Answered by
0
Answer:
Following loops will execute 3 times. Loop 1 is Entry control loop and Loop 2 is Exit control loop.
Similar questions