Quiz
What is the output of the given code?
while true:
print('a')
break
What is the output of the given code?
while True:
print('a')
break
What is the output of the given code?
a = 0
while a < 10:
a + 2
print(a)