Question:

Looping flow control is also known as ............ flow control.

Show Hint

In programming, iteration refers to the repetition of a block of code, typically through loops such as `for` and `while`.
Updated On: Jan 9, 2026
  • branching
  • iterative
  • sequential
  • decision making
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

Step 1: Understanding the question.
This question is about types of flow control in programming. Looping is a type of flow control where instructions are repeated until a certain condition is met. This is known as iterative flow control.
Step 2: Analyzing the options.
(A) branching: This is incorrect. Branching refers to decision-making where the program chooses one path over another.
(B) iterative: Correct — Iterative flow control is used for looping, where a block of code is executed multiple times.
(C) sequential: This is incorrect. Sequential flow control refers to the default flow where instructions are executed one after the other.
(D) decision making: This is incorrect. Decision making is a separate type of flow control that involves branching, not looping.
Step 3: Conclusion.
The correct answer is (B) iterative, as looping is a type of iterative flow control.
Was this answer helpful?
0
0