Computer Science, asked by PreityGupta, 3 months ago

One similarlity and one difference between entry and exit control loop​

Answers

Answered by alpeshkumar4762
0

The Key Difference Between Entry Control and Exit Control Loop is that in Entry Control Loop the test condition is checked first and if that condition is true then the block of the statement will be executed, While in Exit control loop first executes the body of the loop and checks condition at last. for loop.

Answered by koushiDas89
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.

Similar questions