9) What is Exit-controlled loop in python?
Answers
Answered by
0
Answer:
Oppose to Entry controlled loop, it is a loop in which condition is checked after the execution of the loop body. ... Do-While loop is the example. The loop body would be executed at least once, no matter if the test condition is true or false.
Answered by
0
Answer:
Oppose to Entry controlled loop, it is a loop in which condition is checked after the execution of the loop body. Do-While loop is the example. The loop body would be executed at least once, no matter if the test condition is true or false.
Similar questions