36.5k views
5 votes
A looping construct that continues to repeat until the expression becomes false is

a while loop
O a for loop.
an infinite loop
a pass loop
?​

User Reyraa
by
4.5k points

1 Answer

3 votes

Answer:

a while loop

Step-by-step explanation:

for an example, while x<4:

the program will end when the value of x greater than 4.

User Canopus
by
4.5k points