page-banner
Chapter-4 Operator, Expressions & Python Statement
Q46.
निम्नलिखित स्टेटमेंट का आउटपुट क्या होगा ?<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>
A. 1 2
B. 1 2 3
C. 1 2 3 4
D. 1 2 3 4 5
View Answer
Q47.
निम्नलिखित को हल करने पर आउटपुट क्या होगा ?<break-line><break-line>What value does the following expression evaluate to?<pre><code>print(5 + 8 * ((3* 5)-9) /10)</code></pre>
A. 9.0
B. 9.8
C. 10
D. 10.0
View Answer
Q48.
निम्नलिखित को हल करने पर आउटपुट क्या होगा ?<break-line><break-line>What value does the following expression evaluate to?<pre><code>x = 5 while x < 10: print(x, end=' ')</code></pre>
A. Closed loop
B. One time loop
C. Infinite loop
D. Evergreen loop
View Answer
Q49.
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following expression?<pre><code>x = 4 print(x << 2)</code></pre>
A. 4
B. 16
C. 6
D. 2
View Answer
Q50.
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following expression?<pre><code>print(7//2) print(-7//2)</code></pre>
A. 3 -3
B. 4 -4
C. 3 -4
D. 3 3
View Answer