मान लीजिये की 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>
निम्नलिखित का आउटपुट क्या होगा?<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>
निम्नलिखित का आउटपुट क्या होगा?<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>