187k views
2 votes
What is output? Select all that apply.

C = 3
while (c < 10):
C = C + 2
print (c)

What is output? Select all that apply. C = 3 while (c < 10): C = C + 2 print (c-example-1

1 Answer

4 votes

Answer:

  1. c = 5
  2. c = 7
  3. c = 9
  4. loop ends

Step-by-step explanation:

User Christophe Drevet
by
5.6k points