page-banner
Chapter-4 Operator, Expressions & Python Statement
Q11.
निम्नलिखित में से कौन सा बिटवाइज़ XOR ऑपरेटर का प्रतिनिधित्व करता है?<break-line><break-line>Which of the following represents the bitwise XOR operator?
A. &
B. ^
C. |
D. !
View Answer
Q12.
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<pre><code>x = ['ab', 'cd'] for i in x: i.upper() print(x)</code></pre>
A. ['ab', 'cd']
B. ['AB', 'CD']
C. [None, None]
D. none of the mentioned
View Answer
Q13.
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<pre><code>i = 1 while True: if i%3 == 0: break print(i) i+=1</code></pre>
A. 1 2
B. 1 2 3
C. error
D. none of the mentioned
View Answer
Q14.
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 28 n = 5 print(m // n)</code></pre>
A. 5.0
B. 6
C. 5
D. 4.0
View Answer
Q15.
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 33 if m > 33: print('A') elif m == 30: print('B') else: print('C')</code></pre>
A. C
B. B
C. A
D. 33
View Answer