page-banner
Chapter-4 Operator, Expressions & Python Statement
Q11.
निम्नलिखित में से कौन सा बिटवाइज़ XOR ऑपरेटर का प्रतिनिधित्व करता है?

Which of the following represents the bitwise XOR operator?
A. &
B. ^
C. |
D. !
View Answer
Q12.
निम्नलिखित का आउटपुट क्या है?

What is the output of the following?
x = ['ab', 'cd']
for i in x:
    i.upper()
print(x)
A. ['ab', 'cd']
B. ['AB', 'CD']
C. [None, None]
D. none of the mentioned
View Answer
Q13.
निम्नलिखित का आउटपुट क्या है?

What is the output of the following?
i = 1
while True:
    if i%3 == 0:
        break
    print(i)
    i+=1
A. 1 2
B. 1 2 3
C. error
D. none of the mentioned
View Answer
Q14.
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 28
n = 5
print(m // n)
A. 5.0
B. 6
C. 5
D. 4.0
View Answer
Q15.
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 33
if m > 33:
    print('A')
elif m == 30:
    print('B')
else:
    print('C')
A. C
B. B
C. A
D. 33
View Answer

Create Account