Why are for and while loop is called entry controlled loop?
Answers
Answered by
4
Answer:
if Test condition is false, loop body will not be executed. If Test condition is false, loop body will be executed once. for loop and while loop are the examples of Entry Controlled Loop. ... Entry Controlled Loops are used when checking of test condition is mandatory before executing loop body.
Similar questions