Multiple choice

The exit controlled looping technique is

  1. while

  2. else if

  3. for

  4. do while

  5. None of these

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Do while is a looping technique used in C programming, which first executes the statement and then checks the conditions. So, it is exit controlled. While and for are entry controlled.