Computer Science, asked by sirisharma, 1 day ago

Hello all! This is a computer science question about flowcharts,
Fill in the blank:
A loop that runs only when a condition is true is known as an ________ controlled loop.

Answers

Answered by samarthkrv
1

Answer:

entry-controlled loop

Explanation:

As long as the condition given evaluates to true, the loop iterates. The condition of the loop structure is checked at first and then the control proceeds into the loop structure only if the condition evaluates to true. Hence it is called an entry-controlled loop.

Answered by ishanjha18
1

Answer:

Explanation:

Hey, here is your answer :-

Entry controlled loop is a loop in which the test condition is checked first, and then the loop body will be executed

Similar questions