निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>a = 15
b = 6
print(a and b)
print(a or b)</code></pre>
निम्नलिखित कोड सेगमेंट का आउटपुट क्या होगा?<break-line><break-line>What will following code segment print?<pre><code>a = True
b = False
c = False
if a or b and c:
print("HELLO")
else:
print("hello")</code></pre>
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following?<pre><code>x = 'abcd'
for i in range(x):
print(i)</code></pre>