192k views
0 votes
What is output by the following code? Select all that apply.

c = 0




while (c < 11):

c = c + 6

print (c)
Hi

1 Answer

7 votes

Answer:

6

12

Explanation: I would recommend plugging this problem using your favorite python IDE, or using paper and doing step-by-step computation!

User Chris Bartow
by
7.8k points