निम्नलिखित में से कौन सा बिटवाइज़ XOR ऑपरेटर का प्रतिनिधित्व करता है?<break-line><break-line>Which of the following represents the bitwise XOR operator?
निम्नलिखित का आउटपुट क्या है?<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>
निम्नलिखित का आउटपुट क्या है?<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>
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 28
n = 5
print(m // n)</code></pre>
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<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>