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.
Entry control loop(do) checks the condition first where as exit control loop checks the condition at last