9) What is Exit-controlled loop in python?
Answers
Answered by
1
Answer:
Here is your answer
Explanation:
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.
Hope it's help you
Answered by
0
Answer:
Exit Controlled Loop. Test condition is checked first, and then loop body will be executed. Loop body will be executed first, and then condition is checked. If Test condition is false, loop body will not be executed.
Explanation:
Mark ❣️ me as a brainliest plz
Similar questions