निम्नलिखित स्टेटमेंट का आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>a = 0
b = 3
while a + b < 8:
a += 1
print(a, end=' ')</code></pre>
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What does the following code print?<pre><code>if 2 + 5 == 8:
print("TRUE")
else:
print("FALSE")
print("TRUE")</code></pre>
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following expression?<pre><code>a = 2
b = 8
print(a | b)
print(a >> 1)</code></pre>
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python Code?<pre><code>x = 'abcd'
for i in x:
print(i.upper())</code></pre>
निम्नलिखित कोड क्या प्रिंट करेगा ?<break-line><break-line>What does the following code print?<pre><code>x = 'mohan'
for i in range(len(x)):
x[i].upper()
print (x)</code></pre>