difference between entry control loop and exit control loop
Answers
Answered by
44
Answer:
Entry Controlled Loop
Loop, where test condition is checked before entering the loop body, known as Entry Controlled Loop.
Example: while loop, for loop
Exit Controlled Loop
Loop, where test condition is checked after executing the loop body, known as Exit Controlled Loop.
Example: do while loop
Answered by
9
Entry controlled loop-
- Entry controlled loop-This loop will not execute at all, if the condition is not satisfied.
- Entry controlled loop-This loop will not execute at all, if the condition is not satisfied.It check the condition first and then execution begins.
Entry controlled loop-This loop will not execute at all, if the condition is not satisfied.It check the condition first and then execution begins.Exit controlled loop-
- Entry controlled loop-This loop will not execute at all, if the condition is not satisfied.It check the condition first and then execution begins.Exit controlled loop-This loop will execute at least once.
- Entry controlled loop-This loop will not execute at all, if the condition is not satisfied.It check the condition first and then execution begins.Exit controlled loop-This loop will execute at least once.It check the condition only after execution of the loop.
hope it helps you...
mark as brainliest plzz ❤️❤️
Similar questions