KnowledgeBoat Logo
|

Computer Applications

What is the type of looping statement depicted in the below picture?

What is the type of looping statement depicted in the below picture? Computer Application Competency Focused Practice Questions Class 10 Solutions.
  1. Entry controlled loop
  2. Exit controlled loop
  3. Multiple branching statement
  4. All the above.

Java Iterative Stmts

3 Likes

Answer

Entry controlled loop

Reason — An entry controlled loop checks the condition before executing the loop body. In the figure, the condition is evaluated first, and the commands run only if the condition is true, which matches the behaviour of an entry controlled loop like a while loop.

Answered By

1 Like


Related Questions