Computer Science, asked by nayansukh2011, 10 months ago

Why are for and while loops called entry controlled loops?

Answers

Answered by udaykasturi60
11

Explanation:

Entry Controlled Loops are used when checking of test condition is mandatory before executing loop body.

Answered by Nivedita260207
17

Answer:

The for and while loops are called entry controlled loops because they check the condition at the time of entry and if the condition becomes true then the control gets transferred into the body of the loop.

Explanation:

Similar questions