Important Notice:
M3-R5.1 Model Paper — Set 2
100 Questions  •  M3-R5.1
90:00
← Back
1
What is the correct order of the basic model of computation? / कंप्यूटेशन के बेसिक मॉडल का सही क्रम क्या है?
2
How many outgoing lines typically come from a decision box in a flowchart? / फ्लोचार्ट में डिसीजन (निर्णय) बॉक्स से आमतौर पर कितनी आउटगोइंग लाइनें निकलती हैं?
3
Which symbol represents the start/end of a flowchart? / फ्लोचार्ट में स्टार्ट/एंड को किस प्रतीक द्वारा दर्शाया जाता है?
4
What does iterative processing mean in an algorithm? / एल्गोरिदम में इटरेटिव प्रोसेसिंग का क्या अर्थ है?
5
What will be the output of the flowchart if condition A > B is true and A = 10, B = 5? / यदि फ्लोचार्ट में कंडीशन A > B सही है और A = 10, B = 5 है, तो आउटपुट क्या होगा?
6
How can two variables be swapped without a third variable in Python? / पायथन में दो वेरिएबल्स के मान बिना थर्ड वेरिएबल के कैसे बदले जा सकते हैं?
7
What is the sum of first 10 natural numbers using iterative processing? / इटरेटिव प्रोसेसिंग का उपयोग करके पहली 10 प्राकृतिक संख्याओं का योग क्या है?
8
What is typed on the command line to access the Python interpreter? / पायथन इंटरप्रेटर को एक्सेस करने के लिए कमांड लाइन पर क्या टाइप किया जाता है?
9
Which of the following is a valid integer literal in Python? / पायथन में निम्नलिखित में से कौन सा वैलिड इंटीजर लिटरल है?
10
What is the output of string 'World'[ -1 ] in Python? / पायथन में स्ट्रिंग 'World'[ -1 ] का आउटपुट क्या होगा?
11
Which operator is used for exponentiation in Python? / पायथन में एक्सपोनेंटिएशन के लिए किस ऑपरेटर का उपयोग किया जाता है?
12
What is the default separator in Python's print() function? / पायथन के print() फ़ंक्शन में डिफ़ॉल्ट सेपरेटर क्या है?
13
What will be the output of: print(10 % 3 == 1)? / print(10 % 3 == 1) का आउटपुट क्या होगा?
14
What will 'range(1, 10, 2)' generate with a 'for' loop in Python? / पायथन में 'for' लूप के साथ 'range(1, 10, 2)' क्या जनरेट करेगा?
15
Which keyword is used to define an anonymous function in Python? / पायथन में एनोनिमस फंक्शन को परिभाषित करने के लिए किस कीवर्ड का उपयोग किया जाता है?
16
Which data type is immutable in Python? / पायथन में कौन सा डेटा टाइप इम्यूटेबल (अपरिवर्तनीय) है?
17
What is the output of: 'Hello World'.split()[1]? / 'Hello World'.split()[1] का आउटपुट क्या है?
18
Which of the following is a valid assignment statement in Python? / निम्नलिखित में से कौन सा पायथन में वैलिड असाइनमेंट स्टेटमेंट है?
19
Which function returns the absolute value of a number? / कौन सा फ़ंक्शन किसी संख्या का एब्सोल्यूट वैल्यू रिटर्न करता है?
20
What does 'Branching' mean in an algorithm? / एल्गोरिदम में 'Branching' का क्या अर्थ है?
21
What does the 'ceil()' function do? / 'ceil()' फ़ंक्शन क्या करता है?
22
In Python, a Set is created using which symbol? / पायथन में सेट (Set) को किस चिन्ह का उपयोग करके बनाया जाता है?
23
Which method removes the last element from a list? / कौन सा मेथड लिस्ट से अंतिम एलिमेंट को हटाता है?
24
When is a 'Connector' used in a flowchart? / फ्लोचार्ट में 'Connector' का उपयोग कब किया जाता है?
25
What is the value of 'result'? result = (10 + 3) * 2 / 'result' का मान क्या होगा? result = (10 + 3) * 2
26
When can 'else' clause be used with a loop in Python? / पायथन में 'else' क्लॉज का उपयोग लूप के साथ कब किया जा सकता है?
27
Which mode opens a file for appending in Python? / पायथन में फाइल को अपेंड करने के लिए कौन सा मोड ओपन किया जाता है?
28
What is the standard way to import NumPy? / न्यूमपाई (NumPy) को इंपोर्ट करने का मानक तरीका क्या है?
29
What does the 'ENCLOSING' scope refer to in LEGB rule? / LEGB नियम में 'ENCLOSING' स्कोप का क्या अर्थ है?
30
What is the main purpose of Testing in a program? / प्रोग्राम में टेस्टिंग का मुख्य उद्देश्य क्या है?
31
What is the output of: print(type(10.5))? / print(type(10.5)) का आउटपुट क्या है?
32
Which function is used to know the file pointer position in Python? / पायथन में फाइल पॉइंटर की पोजीशन जानने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
33
Which operator is used for modulus division? / मॉड्यूलस डिवीजन के लिए किस ऑपरेटर का उपयोग किया जाता है?
34
What must be done to modify a global variable inside a function in Python? / पायथन में फंक्शन के अंदर 'global' वेरिएबल को मॉडिफाई करने के लिए क्या करना होगा?
35
What is the result of: min(5, 2, 8, 1)? / min(5, 2, 8, 1) का परिणाम क्या है?
36
Which shape is used for Input/Output in a flowchart? / फ्लोचार्ट में इनपुट/आउटपुट के लिए किस आकृति का उपयोग किया जाता है?
37
Which of the following is a valid keyword in Python for exception handling? / निम्नलिखित में से कौन सा पायथन में एक्सेप्शन हैंडलिंग के लिए वैलिड कीवर्ड है?
38
What does the 'readlines()' function return in Python? / पायथन में 'readlines()' फ़ंक्शन क्या रिटर्न करता है?
39
What is the output of: [1, 2, 3] * 2? / [1, 2, 3] * 2 का आउटपुट क्या है?
40
What is a main advantage of a NumPy array? / न्यूमपाई (NumPy) एरे का एक मुख्य लाभ क्या है?
41
Which of the following is a Bitwise operator? / निम्नलिखित में से कौन सा बिटवाइज ऑपरेटर है?
42
What is the easiest way to calculate factorial in Python? / पायथन में फैक्टोरियल की गणना करने का सबसे आसान तरीका क्या है?
43
What does the 'capitalize()' function do to a string? / 'capitalize()' फ़ंक्शन स्ट्रिंग पर क्या करता है?
44
What is the output of the following code? for i in range(5): if i == 3: break print(i, end=' ') / निम्नलिखित कोड का आउटपुट क्या है? for i in range(5): if i == 3: break print(i, end=' ')
45
Which of the following creates a Tuple with one element? / निम्नलिखित में से कौन एक एलिमेंट वाला टपल बनाता है?
46
What does the 'isalpha()' method return? / 'isalpha()' मेथड क्या रिटर्न करता है?
47
What is the output of: print(2 * 3 ** 2)? / print(2 * 3 ** 2) का आउटपुट क्या है?
48
Which function is used to get the current date and time in Python? / पायथन में करंट डेट और टाइम प्राप्त करने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
49
What is a 'module' in Python? / पायथन में 'मॉड्यूल' क्या है?
50
What does the 'strip()' method do? / 'strip()' मेथड क्या करता है?
51
Which of the following is a valid way to import only the sqrt function from math? / निम्नलिखित में से कौन सा math से केवल sqrt फ़ंक्शन को इंपोर्ट करने का वैलिड तरीका है?
52
What is the output of: 'Python'.endswith('hon')? / 'Python'.endswith('hon') का आउटपुट क्या है?
53
What does the 'assert' statement do in Python? / पायथन में 'assert' स्टेटमेंट क्या करता है?
54
What is the output of: [x**2 for x in range(4)]? / [x**2 for x in range(4)] का आउटपुट क्या है?
55
Which method is used to count the frequency of elements in a list using a dictionary? / डिक्शनरी का उपयोग करके लिस्ट में एलिमेंट्स की फ्रीक्वेंसी गिनने के लिए किस मेथड का उपयोग किया जाता है?
56
What is the purpose of 'VarArgs' parameters (*args) in a function? / फंक्शन में 'VarArgs' पैरामीटर्स (*args) का क्या उद्देश्य है?
57
What does the 'join()' method do? / 'join()' मेथड क्या करता है?
58
Which of the following is the correct way to create a 2D NumPy array? / 2D न्यूमपाई एरे बनाने का सही तरीका निम्नलिखित में से कौन सा है?
59
What will be the output of the following code? a = [1,2,3]; b = a; b.append(4); print(a) / निम्नलिखित कोड का आउटपुट क्या होगा? a = [1,2,3]; b = a; b.append(4); print(a)
60
What does the 'reload()' function do in Python modules? / पायथन मॉड्यूल्स में 'reload()' फ़ंक्शन क्या करता है?
61
Which operator has the lowest precedence in Python? / पायथन में किस ऑपरेटर की प्रीसीडेंस सबसे कम होती है?
62
What is the output of: print('Hello\nWorld')? / print('Hello\nWorld') का आउटपुट क्या है?
63
Which of the following is used for pattern matching in Python strings? / पायथन स्ट्रिंग्स में पैटर्न मैचिंग के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
64
What is the output of the following code? def func(x=[]): x.append(1); return x; print(func()); print(func()) / निम्नलिखित कोड का आउटपुट क्या है? def func(x=[]): x.append(1); return x; print(func()); print(func())
65
What does the 'lstrip()' method do? / 'lstrip()' मेथड क्या करता है?
66
Which mode creates a new file for writing and raises an error if the file exists? / कौन सा मोड राइटिंग के लिए एक नई फाइल बनाता है और यदि फाइल मौजूद है तो एरर देता है?
67
What is the output of: print(0.1 + 0.2 == 0.3)? / print(0.1 + 0.2 == 0.3) का आउटपुट क्या है?
68
What does the 'nonlocal' keyword do? / 'nonlocal' कीवर्ड क्या करता है?
69
Which of the following is a valid Python dictionary? / निम्नलिखित में से कौन सा वैलिड पायथन डिक्शनरी है?
70
What is the output of: list(range(5, 0, -1))? / list(range(5, 0, -1)) का आउटपुट क्या है?
71
Which attribute of a NumPy array returns the number of dimensions? / न्यूमपाई एरे का कौन सा एट्रिब्यूट डाइमेंशन्स की संख्या रिटर्न करता है?
72
What is the purpose of the 'floor()' function? / 'floor()' फ़ंक्शन का क्या उद्देश्य है?
73
Which of the following correctly creates a list of 5 zeros? / निम्नलिखित में से कौन सा 5 शून्यों की लिस्ट सही ढंग से बनाता है?
74
What is the output of: print(5 >> 1)? / print(5 >> 1) का आउटपुट क्या है?
75
What does the 'seek(0)' function do in file handling? / फाइल हैंडलिंग में 'seek(0)' फ़ंक्शन क्या करता है?
76
Which of the following is used to find the largest number in an array? / एरे में सबसे बड़ी संख्या ज्ञात करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
77
What is the output of: print(3 << 1)? / print(3 << 1) का आउटपुट क्या है?
78
What does the 'partition()' method do in Python strings? / पायथन स्ट्रिंग्स में 'partition()' मेथड क्या करता है?
79
Which of the following is a valid Python complex number? / निम्नलिखित में से कौन सी वैलिड पायथन कॉम्प्लेक्स संख्या है?
80
What is the purpose of the 'id()' function? / 'id()' फ़ंक्शन का क्या उद्देश्य है?
81
Which of the following correctly prints the upper triangular matrix? / निम्नलिखित में से कौन सा अपर ट्राइएंगुलर मैट्रिक्स को सही ढंग से प्रिंट करता है?
82
What does the 'isalnum()' method return? / 'isalnum()' मेथड क्या रिटर्न करता है?
83
What is the output of: print(not(10 > 5))? / print(not(10 > 5)) का आउटपुट क्या है?
84
Which function is used to convert a string to a float? / स्ट्रिंग को फ्लोट में बदलने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
85
What is the output of the following code? d = {'a':1, 'b':2}; print(d.get('c', 10)) / निम्नलिखित कोड का आउटपुट क्या है? d = {'a':1, 'b':2}; print(d.get('c', 10))
86
What does the 'pow()' function do? / 'pow()' फ़ंक्शन क्या करता है?
87
Which of the following is the correct way to create an identity matrix in NumPy? / न्यूमपाई में आइडेंटिटी मैट्रिक्स बनाने का सही तरीका निम्नलिखित में से कौन सा है?
88
What is the purpose of the 'docstring' in Python? / पायथन में 'डॉकस्ट्रिंग' का क्या उद्देश्य है?
89
What is the output of: print('python'.find('t'))? / print('python'.find('t')) का आउटपुट क्या है?
90
Which of the following is a valid way to reverse a list? / लिस्ट को रिवर्स करने का सही तरीका निम्नलिखित में से कौन सा है?
91
What does the 'istitle()' method return? / 'istitle()' मेथड क्या रिटर्न करता है?
92
What is the output of: print(round(3.14159, 2))? / print(round(3.14159, 2)) का आउटपुट क्या है?
93
Which module provides the 'sqrt()' function? / 'sqrt()' फ़ंक्शन किस मॉड्यूल द्वारा प्रदान किया जाता है?
94
What is the purpose of the 'swapcase()' method? / 'swapcase()' मेथड का क्या उद्देश्य है?
95
What will be the output of the following code? import numpy as np; arr = np.array([1,2,3,4,5]); print(arr[1:4]) / निम्नलिखित कोड का आउटपुट क्या होगा? import numpy as np; arr = np.array([1,2,3,4,5]); print(arr[1:4])
96
What is the purpose of the 'enumerate()' function in Python? / पायथन में 'enumerate()' फ़ंक्शन का क्या उद्देश्य है?
97
Which of the following is used to create a frozen set in Python? / पायथन में फ्रोजन सेट बनाने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
98
What is the output of the following code? print(list(map(lambda x: x**2, [1,2,3,4]))) / निम्नलिखित कोड का आउटपुट क्या है? print(list(map(lambda x: x**2, [1,2,3,4])))
99
Which file handling mode opens a file for both reading and writing without truncating the file? / कौन सा फाइल हैंडलिंग मोड फाइल को बिना ट्रंकेट किए पढ़ने और लिखने दोनों के लिए खोलता है?
100
What does the 'np.linspace(0, 1, 5)' function return in NumPy? / न्यूमपाई में 'np.linspace(0, 1, 5)' फ़ंक्शन क्या रिटर्न करता है?
Answered: 0 / 100