Functions
Q.1 जब एक Function के अंदर उसी Function को call किया जाता हैं, तब वह कहलाता हैं।
When the same function is called inside a function, then it is called.
Q.2 जब किसी फंक्शन को किसी क्लास के अंदर परिभाषित किया जाता है तो उसे क्या कहते हैं?
What is it called when a function is defined inside a class?
Q.3 trunc() function की रिटर्न वैल्यू क्या है?
What is the return value of trunc() function?
Q.4 निम्नलिखित में से कौन सा python language में एक कीवर्ड नहीं है?
Which of the following is not a keyword in python language?
Q.5 किसी फंक्शन के बाहर परिभाषित वेरिएबल को क्या कहते हैं?
What is a variable defined outside a function called?
Q.6 pow(x,y) के लिए सही ऑपरेटर कौन सा है?
Which is the correct operator for pow(x,y)?
Q.7 फंक्शन id() का रिटर्न प्रकार क्या है?
What is the return type of function id()?
Q.8 निम्नलिखित में से किसे identifier के रूप में उपयोग नहीं किया जा सकता है?
Which of the following cannot be used as an identifier?
Q.9 inf का return type (return type of inf) क्या होता है?
What is the return type of inf?
Q.10 निम्नलिखित में से कौन एक वैध स्ट्रिंग स्थिरांक(valid string constant in python) है?
Which of the following is a valid string constant in python?
Q.11 निम्नलिखित 'पायथन' प्रोग्राम का आउटपुट क्या होगा? a=1 b=5 if(a==5 या b>10): प्रिंट('मैं निश्चित रूप से पास हो जाऊंगा') अन्यथा: प्रिंट('मैं परिणाम के बारे में इतना निश्चित नहीं हूं')
What will be the output of the following ‘python’ program? a=1 b=5 if(a==5 or b>10): print("I will certainly pass") else: print("I am not so sure about the result")
Q.12 निम्न में से कौन सा पायथन में एक कीवर्ड नहीं है
Which of the following is not a keyword in Python
Q.13 list के item curly braces { } के अंदर लिखे जाते है
The items of the list are written inside curly braces { }
Q.14 निम्नलिखित अभिव्यक्ति में से किसके पास उच्चतम precedence है ?
Which of the following expressions has the highest precedence?
Q.15 जोड़ और घटाव का वरीयता स्तर (precedence level)एक ही है |
The precedence level of addition and subtraction is the same.
Q.16 values() dictionary का एक function है जो dictionary से सभी values प्राप्त करता है ।
values() is a function of dictionary which gets all the values ??from the dictionary.
Q.17 एक पायथन documentation स्ट्रिंग को docstring के रूप में जाना जाता है
A Python documentation string is known as a docstring.
Q.18 Python में Enumerate () एक method है जिसका उपयोग iterable object के प्रत्येक आइटम को एक index assign करने के लिए किया जाता है।
Enumerate() in Python is a method used to assign an index to each item of an iterable object.
Q.19 print(3**4) इसको execute करने पर output क्या आएगा ?
print(3**4) What will be the output after executing this?
Q.20 remove method set,list के item को delete करता है, तो remove() method के लिए कौन सा कथन सही है ?
remove method deletes the item of set,list, then which statement is correct for remove() method?
Q.21 इसका output क्या होगा | print("Examjila[-1]")
What will be its output? print("Examjila[-1]")
Q.22 python में input() function क्या return करता है ?
What does the input() function return in python?
Q.23 print("10" + 15) का output होगा ?
What will be the output of print("10" + 15)?
Q.24 integer value को string में बदलने के लिए किस function का प्रयोग करते है ?
Which function is used to convert integer value to string?
Q.25 Correct output statement. if print(100/0)
Correct output statement. if print(100/0)
Q.26 किसी character की ASCII value लेने के लिए किस function का use किया जाता है ?
Which function is used to get the ASCII value of a character?
Q.27 किसी valid ASCII number को करैक्टर में बदलने के लिए किस function का प्रयोग करते है ?
Which function is used to convert a valid ASCII number into character?
Q.28 zeros() method एक array create करता है और by default सभी values को 1 से fill करता है ?
zeros() method creates an array and by default fills all values ??with 1?
Q.29 eye() method __________ में उपलब्ध है ?
eye() method is available in __________?
Q.30 जब function multiple values return करता है तब यह____________ की form में होता है
When a function returns multiple values, it is in the form of ____________.
Q.31 क्या हम lamda() function के साथ return keyword use कर सकते है ?
Can we use return keyword with lambda() function?
Q.32 seek() method file object की current position को return करता है ?
seek() method returns the current position of the file object?
Q.33 print(0.1 + 0.2 == 0.3) का आउटपुट क्या है?
What is the output of print(0.1 + 0.2 == 0.3)?
Q.34 print(0.1 + 0.2 > 0.3) का आउटपुट क्या है?
What is the output of print(0.1 + 0.2 > 0.3)?
Q.35 print(9//2) का output क्या हैं?
What is the output of print(9//2)?
Q.36 निम्नलिखित में से कौन गणितीय कार्य को refers करता हैं?
Which of the following refers to mathematical operations?
Q.37 यदि किसी function का रिटर्न statement नहीं है, तो निम्न में से कौन सा function रिटर्न होता हैं?
By using Function, we can avoid writing the same code again and again in a program.
Q.38 निम्न में से कौन सा फंक्शन पाइथन में बिल्ट-इन फंक्शन है?
Q.39 निम्नलिखित में से कौन से पायथन में मान्य स्ट्रिंग हेरफेर कार्य हैं?
Q.40 निम्नलिखित प्रोग्राम का आउटपुट क्या है: print "Hello World"[::-1]
Q.41 निम्नलिखित में से कौन सा कार्य पायथन में दिनांक को संबंधित समय में परिवर्तित करता है?
Q.42 नीचे दिए गए कोड स्निपेट में var का डेटाटाइप क्या होगा? var = 10 print(type(var)) var = "Hello" print(type(var))
What will be the datatype of var in the code snippet below? var = 10 print(type(var)) var = "Hello" print(type(var))
Q.43 निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा? a=[1,2,3,4,5,6,7,8,9] a[::2]=10,20,30,40,50,60 print(a)
What will be the output of the following code snippet? a=[1,2,3,4,5,6,7,8,9] a[::2]=10,20,30,40,50,60 print(a)
Q.44 कोड प्रिंट का आउटपुट क्या होता है (9//2)
What is the output of code print (9//2)
Q.45 फॉर आई इन रेंज (-5,0,1) चलेगी
For i in range (-5,0,1) will work
Q.46 डेटाइम में बदलने के लिए प्रयोग किया जाने वाला फंक्शन है :
The function used to convert datetime is:
Q.47 निम्नलिखित पायथन फ़ंक्शन का आउटपुट क्या होगा? all([2,4,0,6])
What will be the output of the following Python function? all([2,4,0,6])
Q.48 टेक्स्ट प्रदर्शित करने के लिए किस पायथन फ़ंक्शन का उपयोग किया जाता है?
Which Python function is used to display text?
Q.49 निम्नलिखित पायथन फ़ंक्शन का आउटपुट क्या होगा?sum(2,4,6) sum([1,2,3])
What will be the output of the following Python function? sum(2,4,6) sum([1,2,3])
Q.50 एक पुनरावर्ती कार्य क्या है?
What is a recursive function?