निम्नलिखित में से कौन सा फ़ंक्शन पायथन में एक बिल्ट-इन फ़ंक्शन है<break-line><break-line>Which of the following functions is a built-in function in Python
निम्नलिखित कोड स्निपेट का आउटपुट क्या है?<break-line><break-line>What is the output of the following code snippet?<pre><code>print([i.lower() for i in "HELLO"])</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following Python code?<pre><code>Y = [2,5J, 6]
Y.sort()</code></pre>
निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following code?<pre><code>def s(n1):
print(n1)
n1 = n1 + 2
n2 = 4
s(n2)
print(n2)</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following Python code?<pre><code>def display(b, n):
while n>0:
print(b, end='')
n = n-1
display('z', 3)</code></pre>