18.3k views
1 vote
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.

User Crouch
by
4.4k points

2 Answers

6 votes

Answer: A. A while loop. I think

Step-by-step explanation:

User Himanshu Mori
by
4.0k points
7 votes

Answer:

A) a while loop.

Step-by-step 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.

User Jpsfs
by
4.8k points