fun1() का सही फंक्शन डिक्लेरेशन चुनें ताकि हम निम्नलिखित दो फंक्शन कॉल्स को सफलतापूर्वक निष्पादित कर सकें।<break-line><break-line>Choose the correct function declaration of fun1() so that we can execute the following two function calls successfully.<break-line><break-line><pre><code>fun1(25, 75, 55)
fun1(10, 20)</code></pre>
असेम्बली भाषा को मशीनी भाषा में बदलने के लिए किस अनुवादक का प्रयोग किया जाता है?<break-line><break-line>Which translator is used to convert assembly language into machine language?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<break-line><break-line><pre><code>x = 'abcd'
for i in x:
print(i.upper())</code></pre>
निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code snippet?<break-line><break-line><pre><code>from math import *
a = 2.19
b = 3.999999
c = -3.30
print(int(a), floor(b), ceil(c), fabs(c))</code></pre>
अन्य मॉड्यूल में किसी मॉड्यूल का उपयोग करने के लिए आपको उस ______ स्टेटमेंट का उपयोग करके इम्पोर्ट करना होगा।<break-line><break-line>To use a module in another module, you must import it using an __________ statement.