ITI COPA
Home
Practice Set
NIMI MOCK TEST
Employability Skills
Module 16 : Elective-1 Programming language (Python)
Question 1
What is the output of print(ʹ%x, %Xʹ % (15, 15))? | प्रिंट (ʹ% x, % Xʹ % (15, 15)) का आउटपुट क्या है?
F F
15 15
f f
f F
Question 2
def foo(x): x[0] = [ʹdefʹ] x[1] = [ʹabcʹ] return id(x) q = [ʹabcʹ, ʹdefʹ] print(id(q) == foo(q))
Error | गलती
None | कोई नहीं
False | असत्य
True | सत्य
Question 3
nums=list({1:ʹoneʹ,2:ʹtwoʹ}) print(nums)______
Syntax Error
[1, 2]
[‘oneʹ, ‘twoʹ]
Runtime error
Question 4
Which of the following is not used as loop in Python? | निम्नलिखित में से किसका उपयोग पायथन में लूप के रूप में नहीं किया जाता है?
for loop
while loop
do-while loop
loop
Question 5
What keyword would you use to add an alternative condition to an if statement? | किसी if स्टेटमेंट में वैकल्पिक कंडीशन जोड़ने के लिए आप किस कीवर्ड का उपयोग करेंगे?
else if
elseif
elif
if else
Question 6
What will be the output of the following Python code snippet? total={} def insert(items): if items in total: total[items] += 1 else: total[items] = 1 insert(ʹAppleʹ) insert(ʹBallʹ) insert(ʹAppleʹ) print (len(total)) | निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा? total={} def insert(items): if items in total: total[items] += 1 else: total[items] = 1 insert(ʹAppleʹ) insert(ʹBallʹ) insert(ʹAppleʹ) print (len(total))
2
1
0
3
Question 7
Which of the following is not a core data type in Python programming? | निम्नलिखित में से कौन सा पायथन प्रोग्रामिंग में कोर डेटा टाइप नहीं है?
Tuples | टुपल्स
Lists | लिस्ट
Class | क्लास
Dictionary | डिक्शनरी
Question 8
What will be the output of the following Python code snippet if x=1? x<<2 | निम्नलिखित पायथन कोड स्निपेट if x = 1? x<< 2 का आउटपुट क्या होगा?
4
2
1
8
Question 9
Suppose d = {“john”:40, “peter”:45}, to delete the entry for “john” what command do we use? | Suppose d = {“john”:40, “peter”:45}, to delete the entry for “john” हम किस कमांड का प्रयोग करते हैं?
d.delete(“john”:40)
d.delete(“john”)
del d[“john”]
del d(“john”:40)
Question 10
In Which language does Python is written? | पायथन किस भाषा में लिखा जाता है?
English
PHP
C
Chines
Question 11
Which of the following is used to define a block of code in Python language? | पायथन भाषा में कोड के ब्लॉक को परिभाषित करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
Indentation | इंडेंटेशन
Key | की
Brackets | कोष्ठक
Line break | लाइन ब्रेक
Question 12
What is the word (command) used to display numbers and text on the screen? | स्क्रीन पर संख्याओं और टेक्स्ट को प्रदर्शित करने के लिए प्रयुक्त वर्ड (कमांड) क्या है?
print()
input()
output()
command()
Question 13
To add a new element to a list we use which Python command? | किसी सूची में नया तत्व जोड़ने के लिए हम किस पायथन कमांड का उपयोग करते हैं?
List1.addEnd(5)
List1.addLast(5)
List1.append(5)
List1.add(5)
Question 14
Which platform is used to develop the business application in Python? | पायथन में बिज़नेस एप्लीकेशन विकसित करने के लिए किस प्लेटफॉर्म का उपयोग किया जाता है?
Matplotlib
Pandas
Tryton
TimPlayer
Question 15
Which of the following character is used to give single-line comments in Python? | पायथन में सिंगल-लाइन कमेंट देने के लिए निम्न में से किस कैरेक्टर का उपयोग किया जाता है?
//
#
!
/*
Question 16
Which Program code making use of a given module is? | किसी दिए गए मॉड्यूल का उपयोग करने वाला कौन सा प्रोग्राम कोड है?
Client
Interface
Docstring
Modularity
Question 17
Which functions are used to accept input from the user? | यूजर से इनपुट स्वीकार करने के लिए कौन से कार्यों का उपयोग किया जाता है?
raw_input()
rawinput()
input()
string()
Question 18
def f(x): def f1(*args, **kwargs): print(ʺSanfoundryʺ) return x(*args, **kwargs) return f1
any number of | किसी भी संख्या में
0
1
2
Question 19
How to declare an array, you must use? | एक एरे कैसे घोषित करें, आपको इसका उपयोग करना चाहिए।
brackets[ ]
parenthesis()
curly braces{ }
pipes | |
Question 20
What will be the output of the following Python code snippet? >>> import collections >>> a=collections.Counter([3,3,4,5]) >>> b=collections.Counter([3,4,4,5,5,5]) >>> a&b | निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा? >>> import collections >>> a=collections.Counter([3,3,4,5]) >>> b=collections.Counter([3,4,4,5,5,5]) >>> a&b
Counter({3: 12, 4: 1, 5: 1})
Counter({3: 1, 4: 1, 5: 1})
Counter({4: 2})
Counter({5: 1})
Question 21
Who developed the Python language? | पायथन भाषा का विकास किसने किया?
Zim Den
Guido van Rossum
Niene Stom
Wick van Rossum
Question 22
What does pip stand for python? | पायथन के लिए पिप क्या है?
Unlimited Length | असीमित लंबाई
All private members must have leading and trailing underscores | सभी निजी सदस्यों के पास अग्रणी और अनुगामी अंडरस्कोर होने चाहिए
Preferred Installer Program | प्रीफेर्ड इंस्टॉलर प्रोग्राम
None of the mentioned | इनमें से कोई भी उल्लेखित नहीं है
Question 23
How to use a control structure, in a Python program? | पायथन प्रोग्राम में कण्ट्रोल स्ट्रक्चर का उपयोग कैसे करें?
Defines program-specific data structures | प्रोग्राम-विशिष्ट डेटा स्ट्रक्चर्स को परिभाषित करता है
Manages the input and output of control characters | कण्ट्रोल कैरिक्टर के इनपुट और आउटपुट का प्रबंधन करता है
Directs the order of execution of the statements in the program | प्रोग्राम में स्टेटमेंट्स के एक्सेक्यूटिव के क्रम को निर्देशित करता है
Dictates what happens before the program starts and After it terminates. | तय करता है कि प्रोग्राम शुरू होने से पहले और उसके समाप्त होने के बाद क्या होता है।
Question 24
Which one of the following has the highest precedence in the expression? | निम्नलिखित में से किसकी अभिव्यक्ति में सर्वोच्च पूर्वता है?
Division
Subtraction
Power
Parentheses
Question 25
What will be the output of the following Python code? i = 0 while i < 5: print(i) i += 1 if i == 3: break else: print(0) | निम्नलिखित पायथन कोड का आउटपुट क्या होगा? i = 0_x000D_ while i < 5:_x000D_ print(i)_x000D_ i += 1_x000D_ if i == 3:_x000D_ break_x000D_ else:_x000D_ print(0)
0 1 2 0
0 1 2
1 2
error
Question 26
i=5 if i>11 : print (ʺi is greater than 11ʺ) | i=5 यदि i>11 : print (ʺi is greater than 11ʺ)
No output | कोई आउटपुट नहीं
Abnormal termination of program | प्रोग्राम की असामान्य समाप्ति
Both A and B | A और B दोनों
5 is greater than 11 | 5, 11 से बड़ा है
Question 27
What will be the output of given Python code? str1=ʺhelloʺ c=0 for x in str1: if(x!=ʺlʺ): c=c+1 else: pass print(c) | दिए गए पायथन कोड का आउटपुट क्या होगा? str1=ʺhelloʺ c=0 for x in str1: if(x!=ʺlʺ): c=c+1 else: पास प्रिंट(c)
2
3
4
5
Question 28
Whether Python code compiled or interpreted? | क्या पायथन कोड संकलित या व्याख्या किया गया है?
Python code is both compiled and interpreted | पायथन कोड संकलित और व्याख्या दोनों है
Python code is neither compiled nor interpreted | पायथन कोड न तो संकलित है और न ही व्याख्या की गई है
Python code is only compiled | पायथन कोड केवल संकलित है
Python code is only interpreted | पायथन कोड केवल व्याख्या की जाती है
Question 29
Which of the following is the valid Python file extension? | निम्नलिखित में से कौन सा वैध पायथन फ़ाइल एक्सटेंशन है?
.python
.pl
.py
.p
Question 30
Which of the following Python statements will result in the output: 6? A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] | निम्नलिखित में से कौन सा पायथन कथन आउटपुट में परिणाम देगा: 6? A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
A[2][1]
A[1][2]
A[3][2]
A[2][3]
Question 31
How are data items added to an array? | किसी ऐरे में डेटा आइटम कैसे जोड़े जाते हैं?
Items are appended to the next free index | आइटम नेक्स्ट फ्री इंडेक्स में जोड़े जाते हैं
In alphabetical order | अल्फाबेटिकल क्रम में
Data may only be read from an array, sorry | डेटा केवल एक ऐरे से पढ़ा जा सकता है, सॉरी
Whichever way you want | आप जिस तरह से चाहें
Question 32
The list.pop() function will_____
remove the first element from a list | किसी सूची से पहला तत्व हटाएँ
remove the last element from a list | किसी सूची से अंतिम तत्व हटाएँ
none will be removed | किसी को हटाया नहीं जाएगा
both will be removed | दोनों को हटा दिया जाएगा
Question 33
What will be the output of the following? ʹlst=[ʹPythonʹ, ʹJavaʹ, ʹC++ʹ] 1st.insert(len(L1),ʹSQLʹ) print(lst) | निम्नलिखित का आउटपुट क्या होगा? ʹlst=[ʹPythonʹ, ʹJavaʹ, ʹC++ʹ] 1st.insert(len(L1),ʹSQLʹ) print(lst)
[ʹPythonʹ, ʹJavaʹ, ʹC++ʹ, ʹSQLʹ]
[ʹSQLʹ, ʹPythonʹ, ʹJavaʹ, ʹC++ʹ]
[ʹPythonʹ, ʹSQLʹ, ʹJavaʹ, ʹC++ʹ]
[ʹPythonʹ, ʹJavaʹ, ʹSQLʹ, ʹC++ʹ]
Question 34
If [ʹoneʹ, ʹfourʹ, ʹthreeʹ, ʹtwoʹ] is a list object, the sort() function will return _____.
[ʹfourʹ, ʹthreeʹ, ʹtwoʹ, ʹoneʹ]
[ʹoneʹ, ʹtwoʹ, ʹthreeʹ, ʹfourʹ]
[ʹfourʹ, ʹoneʹ, ʹthreeʹ, ʹtwoʹ]
{ʺfourʺ,ʺoneʺ,ʺthreeʺ,ʺtwoʺ}
Question 35
The following is used to define a ___.d = {
:
,
:
, . . .
:
} | परिभाषित करने के लिए निम्नलिखित का उपयोग किया जाता है a ___.d = {
:
,
:
, . . .
:
}
Group | ग्रूप
List | लिस्ट
Dictionary | डिक्शनरी
Tuple | टुप्ले
Question 36
Which one of the following is a valid Python if statement? | निम्नलिखित में से कौन सा एक मान्य Python if स्टेटमेंट है?
if a>=2:
if (a >= 2)
if (a => 22)
if a >= 22
Question 37
Which multimedia application was developed using Python? | पायथन का उपयोग करके कौन सा मल्टीमीडिया एप्लिकेशन विकसित किया गया था?
Matplotlib
Pandas
Tryton
TimPlayer
Question 38
Suppose d = {“john”:40, “peter”:45}, what happens when we try to retrieve a value using the expression d[“susan”]? | Suppose d = {“john”:40, “peter”:45}, तब होता है जब हम अभिव्यक्ति का उपयोग करके कोई मान पुनः प्राप्त करने का प्रयास करते हैं d[“susan”]?
Since “susan” is not a value in the set, Python raises a KeyError exception | चूँकि “susan” सेट में कोई मान नहीं है, पायथन एक कुंजीत्रुटि अपवाद उठाता है
It is executed fine and no exception is raised, and it returns None | इसे ठीक से निष्पादित किया जाता है और कोई अपवाद नहीं उठाया जाता है, और यह कोई नहीं लौटाता है
Since “susan” is not a key in the set, Python raises a syntax error | चूँकि “susan” सेट में एक कुंजी नहीं है, पायथन एक सिंटैक्स त्रुटि उत्पन्न करता है
Since “susan” is not a key in the set, Python raises a KeyError exception | चूँकि “susan” सेट में एक कुंजी नहीं है, पायथन एक कुंजी त्रुटी अपवाद उठाता है
Question 39
Which one of the following is not a keyword in Python language? | निम्नलिखित में से कौन सा पाइथन भाषा में एक कीवर्ड नहीं है?
pass
eval
assert
nonlocal
Question 40
In which year was the Python language developed? | पायथन भाषा का विकास किस वर्ष में हुआ था?
1995
1972
1981
1989
Question 41
What will be the output of the following Python code if the system date is 18th August, 2016? tday=datetime.date.today() print(tday.month()) | निम्नलिखित पायथन कोड का आउटपुट क्या होगा यदि सिस्टम की तारीख 18 अगस्त, 2016 है? tday=datetime.date.today()_x000D_ print(tday.month())
08
8
August
Aug
Question 42
What is the data type of print(type(0xFF))? | प्रिंट(type(0xFF)) का डेटा टाइप क्या है?
number
hexint
hex
int
Question 43
What is an array? | एक ऐरे क्या है?
It is a special variable, which can hold more than one value at a time. | यह एक विशेष वेरिएबल है, जो एक समय में एक से अधिक मान धारण कर सकता है
It is a special variable, which can hold one value at a time. | यह एक विशेष वेरिएबल है, जो एक समय में एक मान धारण कर सकता है
It is a special variable, which can hold two value at a time. | यह एक विशेष वेरिएबल है, जो एक समय में दो मान धारण कर सकता है
It is a special variable, which can hold three value at a time. | यह एक विशेष वेरिएबल है, जो एक समय में तीन मान धारण कर सकता है
Question 44
Which of the following declarations is incorrect in python language? | निम्नलिखित में से कौन सी डेक्लरेशंस पायथन भाषा में गलत है?
xyzp = 5,000,000
x y z p = 5000 6000 7000 8000
x,y,z,p = 5000, 6000, 7000, 8000
x_y_z_p = 5,000,000
Question 45
Which of the following operators is the correct option for power(ab)? | निम्नलिखित में से कौन सा ऑपरेटर power(ab) के लिए सही विकल्प है?
a ^ b
a**b
a ^ ^ b
a ^ * b
Question 46
x=13 if x>12 or x<15 and x==16: print(ʺGiven condition matchedʺ) else: print(ʺGiven condition did not matchʺ) | x=13_x000D_ यदि x>12 or x<15 and x==16:_x000D_ print(ʺGiven condition matchedʺ)_x000D_ else:_x000D_ print(ʺGiven condition did not matchʺ)
Given condition matched | दी गई कंडीशन मेल खाती है
Given condition did not match | दी गई कंडीशन मेल नहीं खाती
Both A and B | A और B दोनों
Abnormal termination of the program | प्रोग्राम का असामान्य समापन
Question 47
What will be the result after the execution of above Python code? list1=[3,2,5,7,3,6] list1.pop(3) print(list1) | उपरोक्त पायथन कोड के निष्पादन के बाद परिणाम क्या होगा? list1=[3,2,5,7,3,6]_x000D_ list1.pop(3)_x000D_ print(list1)
[3,2,5,3,6]
[2,5,7,3,6]
[2,5,7,6]
[3,2,5,7,3,6]
Question 48
Select all the valid String creation in Python. | पायथन में सभी वैलिड स्ट्रिंग क्रिएशन का चयन करें।
str1 = ʹstr1ʹ str1 = ʺstr1ʺ str1 = ʹʹʹstrʹʹʹ
str1 = ʹstr1ʹ str1 = ʺstr1ʺʺ str1 = ʹʹʹstr1ʹʹ
str1 = str(XYZ)
str1 = str(ʺXYZʺ)
Question 49
What does the following code print to console? if True: print(1001) else: print(2002) | निम्नलिखित कोड कंसोल पर क्या प्रिंट करता है? if True:_x000D_ print(1001)_x000D_ else:_x000D_ print(2002)
1001
1
2002
Question 50
Class tester: def __init__(self, id): self.id = str(id) id=ʺ224ʺ >>>temp = tester(12) >>>print(temp.id)
12
224
None | कोई नहीं
Error | गलती
Question 51
What will be the output of the following Python code snippet? 1)d = {ʺjohnʺ:40, ʺpeterʺ:45} 2)ʺjohnʺ in d | निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा? 1)d = {ʺjohnʺ:40, ʺpeterʺ:45} 2)ʺjohnʺ in d
True | सत्य
False | असत्य
None | कोई नहीं
Error | गलती
Question 52
a = int(input(ʺEnter an integer: ʺ)) b = int(input(ʺEnter an integer: ʺ)) if a <= 0: b = b +1 else: a = a + 1 | ʺa = int(input(ʺʺEnter an integer: ʺʺ)) b = int(input(ʺʺEnter an integer: ʺʺ)) यदि a <= 0: b = b +1 else: a = a + 1ʺ
if inputted number is a negative integer then b = b +1 | यदि इनपुट किया गया नंबर एक ऋणात्मक पूर्णांक है तो b = b +1
if inputted number is a positive integer then a = a +1 | यदि इनपुट किया गया नंबर एक धनात्मक पूर्णांक है तो a = a +1
Both A and B | A और B दोनों
No output | कोई आउटपुट नहीं
Question 53
Which one of the following has the same precedence level? | निम्नलिखित में से किसका प्रेसेडेंसी स्तर समान है?
Division, Power, Multiplication, Addition and Subtraction | डिवीज़न, पावर, मल्टिप्लिकेशन, अडिशन और सब्ट्रैक्शन
Power and Division | पावर एंड डिवीज़न
Subtraction and Division | सब्ट्रैक्शन एंड डिवीज़न
Division and Multiplication | डिवीज़न एंड मल्टिप्लिकेशन
Question 54
Which of the following is true for variable names in Python? | पायथन में वेरिएबल नामों के लिए निम्न में से कौन सा सही है?
Underscore and Ampersand are the only two special characters allowed | अंडरस्कोर और एम्परसेंड केवल दो स्पेशल कैरिक्टर की अनुमति है
Unlimited Length | अनलिमिटेड लेंथ
All private members must have leading and Trailing underscores | सभी प्राइवेट मेंबर्स के पास लीडिंग एंड ट्रेलिंग अंडरस्कोर होने चाहिए
Case-insensitive | असंवेदनशील मामलाकेस-इंसेंसिटीव
<< Previous Test
>> Next Test
Newer Post
Older Post
Home