एक स्ट्रिंग x = “hello” दिया गया है x.count('l') का आउटपुट क्या है<break-line><break-line>Given a string x = “hello” What is the output of x.count(‘l’)
func1() की सही फ़ंक्शन घोषणा चुनें ताकि हम निम्नलिखित दो फ़ंक्शन कॉल को सफलतापूर्वक निष्पादित कर सकें।<break-line><break-line>Choose the correct function declaration of func1() so that we can execute the following two function calls successfully.
fun1(25, 75, 55)
fun1(10, 20)
निम्नलिखित पायथन कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following Python code?<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