233k views
0 votes
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)

User Feng Wang
by
3.3k points

1 Answer

4 votes

Answer:

12

Step-by-step explanation:

S Solution

N Nine seconds to take time

M 0 minutes to take

User Louis Saglio
by
3.6k points