At Westonci.ca, we make it easy to get the answers you need from a community of informed and experienced contributors. Join our platform to get reliable answers to your questions from a knowledgeable community of experts. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.

Question 11 pts
What is output by the following code? Select all that apply.

c = 0




while (c < 11):

c = c + 6

print (c)
Group of answer choices

0

2

4

8

10

6

14

16

1

3

12

Flag question: Question 2
Question 21 pts
What is output by the following code? Select all that apply.

c = 2




while (c < 12):

print (c)
c = c + 3
Group of answer choices

3

4

6

7

9

2

10

5

12

8

1

11

Flag question: Question 3
Question 31 pts
What is output by the following code?

c = 1

sum = 0

while (c < 10):

c = c + 2

sum = sum + c




print (sum)