hat is the output of the following?
i = 5
while True:
if i%0O11 == 0:
Page No 12
break
print(i)
i += 1
a) 5 6 7 8 9 10
b) 5 6 7 8
c) 5 6
d) error
i = 5
while True:
if i%0O11 == 0:
Page No 12
break
print(i)
i += 1
a) 5 6 7 8 9 10
b) 5 6 7 8
c) 5 6
d) error