पायथन में प्राथमिकता का क्रम क्या है?<break-line><break-line>What is the order of precedence in Python?<break-line>i) Parentheses<break-line>ii) Exponential<break-line>iii) Multiplication<break-line>iv) Division<break-line>v) Addition<break-line>vi) Subtraction
निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code snippet?<pre><code>print(2**3 + (5 + 6)**(1 + 1))</code></pre>
निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code snippet?<pre><code>count = 0
while(True):
if count % 3 == 0:
print(count, end = " ")
if(count > 15):
break
count += 1</code></pre>
निम्नलिखित कोड सेगमेंट क्या प्रिंट करेगा?<break-line><break-line>What will following code segment print?<pre><code>if True or True:
if False and True or False:
print('A')
elif False and False or True and True:
print('B')
else:
print('C')
else:
print('D')</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>x = (i for i in range(3))
for i in x:
print(i)</code></pre>