Computer Science, asked by vijaykp2007, 1 year ago

state two differences between entry controlled loop and exit controlled loop

Answers

Answered by Anonymous
5
   Entry controlled loop                                           Exit controlled loop
1. The test expression is                                 1. The test expression is                    evaluated before each iteration.                       evaluated after each iteration.
2. It does not execute if condition is               2.  It executes at least one time if 
    not satisfied.                                                    even if the condition is not                                                                                                  satisfied.

Answered by Anonymous
7

Entry controlled loop-

  1. This loop will not execute at all, if the condition is not satisfied.
  2. It check the condition first and then execution begins.

Exit controlled loop-

  1. This loop will execute at least once.
  2. It check the condition only after execution of the loop.

hope it helps you dearr ....

mark as brainliest...❤️

Similar questions