निम्नलिखित स्टेटमेंट का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>x = 2
if x < 5:
print(x)
else:
pass</code></pre>
निम्नलिखित प्रोग्राम का आउटपुट क्या है<break-line><break-line>What is the output of the following program<pre><code>i=0
while i < 3:
print(i)
i+=1
else:
print(0)</code></pre>
निम्नलिखित कोड सेगमेंट क्या प्रिंट करेगा ?<break-line><break-line>What will following code segment print ?<pre><code>a = True
b = False
c = False
if not a or b:
print(1)
elif not a or not b and c:
print (2)
elif not a or b or not b and a:
print (3)
else:
print (4)</code></pre>