निम्नलिखित स्टेटमेंट का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>for i in range(1,6):
print(i, end=' ')
if i == 3:
break</code></pre>
निम्नलिखित को हल करने पर आउटपुट क्या होगा ?<break-line><break-line>What value does the following expression evaluate to?<pre><code>print(5 + 8 * ((3* 5)-9) /10)</code></pre>
निम्नलिखित को हल करने पर आउटपुट क्या होगा ?<break-line><break-line>What value does the following expression evaluate to?<pre><code>x = 5
while x < 10:
print(x, end=' ')</code></pre>
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following expression?<pre><code>x = 4
print(x << 2)</code></pre>
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following expression?<pre><code>print(7//2)
print(-7//2)</code></pre>