निम्नलिखित कोड का आउटपुट क्या होगा<break-line><break-line>What will be the output of following code?<pre><code>x = ['XX', 'YY']
for i in x:
i.lower()
print(x)</code></pre>
निम्नलिखित में फंक्शन को कॉल करने का कौन सा एक तरीका सही है<break-line><break-line>Which one of the following is the correct way of calling a function?
यदि किसी फंक्शन के पास रिटर्न स्टेटमेंट नहीं है तो निम्नलिखित में से फंक्शन क्या रिटर्न करेगा |<break-line><break-line>If a function does not have a return statement, which of the following does the function return?
फंक्शन को प्रोग्राम में कॉल करने के लिए फंक्शन का नाम के साथ .......... का प्रयोग करते है |<break-line><break-line>The function can be called in the program by writing function name followed by __________.