Question & Answer

A set of statements is executed again and again based upon a conditional test.

A set of statements is executed again and again based upon a conditional test. A. Looping

B. Selective

C. Sequence

D. Conditional

1 Answer

Verified archive
Quizzma TeamAugust 4, 2025

The correct answer is A. Looping.

Explanation: Looping refers to the process of executing a set of statements repeatedly based on a condition being true. In programming, loops allow for the efficient execution of code when the same task needs to be performed multiple times until a certain condition is met. This is essential for tasks such as iterating through lists or performing repeated calculations.