page-banner
Chapter-4 Operator, Expressions & Python Statement
Q31.
निम्नलिखित में से किस ऑपरेटर की सर्वोच्च प्राथमिकता है?

Which of the following operators has the highest precedence?
A. &
B. *
C. not
D. +
View Answer
Q32.
__________ तुरंत एक लूप को पूरी तरह से समाप्त कर देता है।

__________ immediately terminates a loop entirely.
A. break
B. continue
C. pass
D. none of these
View Answer
Q33.
मान लीजिये की 4 बाइनरी में 100 है और 11 1011 है, तो निम्नलिखित बिटवाइज ऑपरेटर का आउटपुट क्या होगा?

Let us assume 4 is 100 in binary and 11 is 1011. What is the output of the following bitwise operators?
a = 4
b = 11
print(a | b)
print(a >> 2)
A. 15 1
B. 14 1
C. 17 2
D. 16 2
View Answer
Q34.
निम्नलिखित का आउटपुट क्या होगा?

What is the output of the following?
i = 2
while True:
    if i%3 == 0:
        break
    print(i,end=" " )
    i += 2
A. 2 4 6 8 10…...
B. 2 4
C. 2 3
D. error
View Answer
Q35.
निम्नलिखित का आउटपुट क्या होगा?

What is the output of the following?
for i in range(10):
    if i == 5:
        break
    else:
        print(i)
else:
    print("Here")
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

Create Account