Asked by Tyesha Valles on May 09, 2024

verifed

Verified

A section of code that is repeated is referred to as a ____.

A) condition
B) selection
C) repetition
D) loop

Repetition

In programming, refers to the action of repeating a set of instructions a specified number of times or until a certain condition is met, often achieved through loops.

Condition

An expression that can be evaluated as true or false, typically used in decision-making structures within programming.

Selection

A process or statement in programming that chooses between two or more paths of execution based on certain conditions.

  • Comprehend the fundamental principles and vocabulary associated with loops in programming.
verifed

Verified Answer

MR
Maddie RooneyMay 15, 2024
Final Answer :
D
Explanation :
A section of code that is repeated is referred to as a loop. Loops are used to execute a block of code multiple times.