1.

State the difference between entry controlled loop and exit controlled loop.

Answer»
Entry control loopExit control loop
In these loops the test condition is evaluated before each iteration.In these loops, condition is evaluated after each iteration
This type of loop can not executed, even once if condition is evaluated to false at first time.This type of loops always executed at least once even if the condition is false.



Discussion

No Comment Found

Related InterviewSolutions