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