Computer Science, asked by ritamghosh9d28222200, 6 months ago

In_____ loop, as soon as the control tries to execute the loop, it checks a condition. If condition true the control will enter in the loop otherwise terminate the loop.

1 point

a) Exit controlled loop

b) Entry Controlled loop

c) Exit restricted loop

d) None of the above

Answers

Answered by Adhikar2410
0

Answer:

In (Exit controlled loop) loop, as soon as the control tries to execute the loop, it checks a condition. If condition true the control will enter in the loop otherwise terminate the loop.

Answered by Anonymous
0

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions