निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 36 / 4 % 2 * 5**3
print(m)</code></pre>
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<pre><code>m = 0
while m < 5:
print(m)
m+=1
if m == 3:
break
else:
print(0)</code></pre>
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 20 * 10 // 30
n = 20 * 10.0 // 40
o = 20.0 * 10 / 50
print(m, n, o)</code></pre>
पायथन भाषा में, निम्नलिखित में से कौन सा ऑपरेटर k को घात 1 तक बढ़ाने के लिए सही विकल्प है?<break-line><break-line>In Python language, which of the following operators is the correct option for raising k to the power 1?