Multiple choice The exit controlled looping technique is while else if for do while 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.