Computer Science, asked by kcardoso, 1 month ago

What is the output? Select all that apply.
c = 0

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


Choices:
0
1
2
3
4
5
6
7
8
9
10

Answers

Answered by sushilkumarpra93
0

Explanation:

c = 0

while (c < 10):

c = c + 5

print (c)

output:

5

6

7

8

9

Similar questions