page-banner
Chapter-4 Operator, Expressions & Python Statement
Q31.
निम्नलिखित में से किस ऑपरेटर की सर्वोच्च प्राथमिकता है?<break-line><break-line>Which of the following operators has the highest precedence?
A. &
B. *
C. not
D. +
View Answer
Q32.
__________ तुरंत एक लूप को पूरी तरह से समाप्त कर देता है।<break-line><break-line>__________ immediately terminates a loop entirely.
A. break
B. continue
C. pass
D. none of these
View Answer
Q33.
मान लीजिये की 4 बाइनरी में 100 है और 11 1011 है, तो निम्नलिखित बिटवाइज ऑपरेटर का आउटपुट क्या होगा?<break-line><break-line>Let us assume 4 is 100 in binary and 11 is 1011. What is the output of the following bitwise operators?<pre><code>a = 4 b = 11 print(a | b) print(a >> 2)</code></pre>
A. 15 1
B. 14 1
C. 17 2
D. 16 2
View Answer
Q34.
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following?<pre><code>i = 2 while True: if i%3 == 0: break print(i,end=" " ) i += 2</code></pre>
A. 2 4 6 8 10…...
B. 2 4
C. 2 3
D. error
View Answer
Q35.
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following?<pre><code>for i in range(10): if i == 5: break else: print(i) else: print("Here")</code></pre>
A. 0 1 2 3 4 Here
B. 0 1 2 3 4 5 Here
C. 0 1 2 3 4
D. 1 2 3 4 5
View Answer