Important Notice:
Jan 2022 M3-R5
1 / 20
What is the output of the following program ? निम्नलिखित प्रोग्राम का आउटपुट क्या है? print "Hello World"[::-1]
2 / 20
Define keywords marks the beginning of the function block. कीवर्ड परिभाषित करें फ़ंक्शन ब्लॉक की शुरुआत को चिह्नित करता है।
3 / 20
There is no default return value for a function that does not return any value explicitly ऐसे फ़ंक्शन के लिए कोई डिफ़ॉल्ट रिटर्न मान नहीं है जो स्पष्ट रूप से कोई मान नहीं लौटाता है।
4 / 20
All keywords in Python are in lower case. पायथन में सभी कीवर्ड लोअर केस में होते हैं।
5 / 20
Which of the following functions converts a string to a float in python ? निम्नलिखित में से कौन सा फ़ंक्शन पायथन में स्ट्रिंग को फ्लोट में परिवर्तित करता है?
6 / 20
What is the output of the expression : एक्सप्रेशन का आउटपुट क्या है: 3*1**3 ?
7 / 20
eval is a keyword in Python. eval पायथन में एक कीवर्ड है।
8 / 20
What is the output of the following program ? निम्नलिखित प्रोग्राम का आउटपुट क्या है? print 0.1+0.2==0.3
9 / 20
Python has no concept of private variables. पायथन में प्राइवेट वेरिएबल्स की कोई अवधारणा नहीं है।
10 / 20
Python is case sensitive when dealing with identifiers आइडेंटिफायर के साथ काम करते समय पायथन केस संवेदनशील होता है।
11 / 20
What is the output of the following program ? निम्नलिखित प्रोग्राम का आउटपुट क्या है? def myfunc(a) : a=a+2 a=a*2 return a print myfunc(2)
12 / 20
Which of these is not a core data type ? इनमें से कौन सा कोर डेटा प्रकार नहीं है?
13 / 20
Given a function that does not return any value, what value is shown when executed at the shell ? एक ऐसा फ़ंक्शन दिया गया है जो कोई मान नहीं लौटाता है, शेल पर निष्पादित होने पर क्या मान दिखाया जाता है?
14 / 20
What is the output of the following program ? निम्नलिखित प्रोग्राम का आउटपुट क्या है? i=0 while i<3: print i i+=1 else : print 0
15 / 20
Function name and parameter list are part of function header. फ़ंक्शन नाम और पैरामीटर सूची फ़ंक्शन हेडर का हिस्सा हैं।
16 / 20
There is no maximum possible length of an identifier in Python. पायथन में किसी पहचानकर्ता की कोई अधिकतम सम्भावित लंबाई नहीं है।
17 / 20
1st_string is a valid identifier name. 1st_string एक वैध पहचानकर्ता नाम है.
18 / 20
What data type is the object below ? नीचे दिया गया ऑब्जेक्ट किस डेटा प्रकार का है? L=[1, 23, 'hello', 1]
19 / 20
Brackets enclose the input parameters or arguments of a function. ब्रैकेट किसी फ़ंक्शन के इनपुट पैरामीटर या तर्क संलग्न करते हैं।
20 / 20
Given a string s="Welcome", which of the following code is incorrect ? एक स्ट्रिंग s="Welcome" दी गई है, निम्नलिखित में से कौन सा कोड ग़लत है?
Your score is
The average score is 59%
Restart quiz