Computer Science, asked by ayush04alok, 14 days ago

4. What is the output of the following?
i = 1
while True
if i%007 == 0
break
print(i)
i += 1
a) 123456 b) 1 2 3 4 5 6 7 c) error d) none of the mentioned​

Answers

Answered by burstbeylocker173
0

Answer:

c) error

Explanation:

Similar questions