निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 99
if m > 9 and m < 19:
print('AA')
elif m > 19 and m < 39:
print('BB')
elif m > 39 and m < 59:
print('CC')
else:
print('DD')</code></pre>
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 6
while m < 11:
print(m, end='')
m = m + 1</code></pre>
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m, n = 2, 5
while n < 10:
print(n, end=' ')
m, n = n, m + n</code></pre>
एक ………………… स्टेटमेंट का उपयोग तब किया जाता है जब एक स्टेटमेंट की सिंटैक्टिक रूप से आवश्यकता होती है लेकिन आप नहीं चाहते कि कोई कोड निष्पादित हो।<break-line><break-line>A ………………… statement is used when a statement is required syntactically but you do not want any code to execute.
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>for m in range(6,9):
if m == 8:
continue
print(m, end=' ')</code></pre>