Anonymous

What Is Basic Difference Between Entry Controlled Loop And Exit Controlled Loop?

2

2 Answers

khushbu bharthania Profile
In Entry controlled loop the test condition is checked first and if that condition is true than the block of statement in the loop body will be executed while in exit controlled loop the body of loop will be executed first and at the end the test condition is checked,if condition is satisfied than body of loop will be executed again.
Anonymous Profile
Anonymous answered
Entry control loop(do) checks the condition first where as exit control loop checks the condition at last

Answer Question

Anonymous