135k views
3 votes
What is output? Select all that apply.

c = 0

while (c < 10):
c = c + 5
print (c)

User Blented
by
4.6k points

1 Answer

5 votes

Answer:

The output is c = c + 5, print (c) and while (c < 10)

User ExoticChimp
by
4.6k points