Computer Science, asked by student2787, 1 year ago

(1)
c=0
for x in range(10):
for y in range(5):
C += 1
print(c)
find the output ​

Answers

Answered by ishu1307
1

Answer:

1

Explanation:

Because value of c is 0 and after c=c+1 then the output will be 1

Similar questions