Answer :

usamasama

Answer:

the output is 4

Explanation:

C = 1  

sum = 0

while (c < 10):         with this condition c is less than 10 because value of c = 1

C = C + 3                 now c = 1 + 3 which is 4

sum = sum + c        sum value is 0 as it is initialised before , so here sum = 0+4

print (sum)             0+4 = 4

113971

Answer:

The answer is 21

Explanation:

Hope it helps

Other Questions