Write one similarity between entry controlled and exit controlled loop
Answers
Answered by
0
Answer:
Entry Controlled Loops are used when checking of test condition is mandatory before executing loop body. Exit Controlled Loop is used when checking of test condition is mandatory after executing the loop body.
Answered by
0
Answer:
Entry controlled loop is a loop in which the test condition is checked first, and then loop body will be executed. Exit controlled loop is a loop in which the loop body is executed first and then the given condition is checked afterwards. If the test condition is false, loop body will not be executed.
hope this is useful
Similar questions