A looping construct that continues to repeat until the expression becomes false is

A) a while loop.
B) a for loop.
C) an infinite loop.
D) a pass loop.

Respuesta :

Answer:

A) a while loop.

Explanation:

A while loop is a programming construct that continues to repeat until the expression becomes false.

While loops are conditional statement that executes as long as the conditions remain true. They are used to automate tasks that are otherwise repetitive and would require redundant computing time to do them manually.

Answer: A. A while loop. I think

Explanation: