Important Notice:
M3-R5.1 Model Paper — Set 3
100 Questions  •  M3-R5.1
90:00
← Back
1
What is the first step in the program development cycle? / प्रोग्राम विकास चक्र में पहला चरण क्या है?
2
What does IPO stand for in the context of programming? / प्रोग्रामिंग के संदर्भ में IPO का क्या अर्थ है?
3
Which symbol is used as a terminal point (Start/Stop) in a flowchart? / फ्लोचार्ट में टर्मिनल पॉइंट (Start/Stop) के रूप में किस प्रतीक का उपयोग किया जाता है?
4
What is the primary purpose of testing in programming? / प्रोग्रामिंग में टेस्टिंग का प्राथमिक उद्देश्य क्या है?
5
Which of the following is NOT a basic control structure in algorithms? / एल्गोरिदम में निम्नलिखित में से कौन सा बेसिक कंट्रोल स्ट्रक्चर नहीं है?
6
What is the decimal equivalent of binary number 1011? / बाइनरी संख्या 1011 का दशमलव समतुल्य क्या है?
7
What is the binary equivalent of decimal number 25? / दशमलव संख्या 25 का बाइनरी समतुल्य क्या है?
8
Which algorithm is used to find GCD of two numbers using repeated subtraction? / दो संख्याओं का GCD ज्ञात करने के लिए बार-बार घटाने वाला कौन सा एल्गोरिदम उपयोग किया जाता है?
9
What is the output of reversing digits of 4567? / 4567 के अंकों को उलटने पर क्या आउटपुट आएगा?
10
Which of the following is a property of a prime number? / अभाज्य संख्या का निम्नलिखित में से कौन सा गुण है?
11
What is the 6th term in the Fibonacci sequence? / फाइबोनैचि अनुक्रम में 6वां पद क्या है?
12
Which of the following is NOT a valid Python keyword? / निम्नलिखित में से कौन सा पायथन का मान्य कीवर्ड नहीं है?
13
What is the output of print(5 // 2) in Python? / पायथन में print(5 // 2) का आउटपुट क्या है?
14
Which of the following is a valid way to write a complex number in Python? / पायथन में कॉम्प्लेक्स नंबर लिखने का मान्य तरीका निम्नलिखित में से कौन सा है?
15
What is the result of 'Python'[2:4]? / 'Python'[2:4] का परिणाम क्या है?
16
What does the 'sep' parameter in print() function do? / print() फ़ंक्शन में 'sep' पैरामीटर क्या करता है?
17
Which operator is used to check if two values are equal in Python? / पायथन में दो मान बराबर हैं या नहीं यह जांचने के लिए किस ऑपरेटर का उपयोग किया जाता है?
18
What is the output of bool(0) in Python? / पायथन में bool(0) का आउटपुट क्या है?
19
Which of the following is a valid if-elif-else statement? / निम्नलिखित में से कौन सा if-elif-else स्टेटमेंट मान्य है?
20
What does the 'range(5)' function generate? / 'range(5)' फ़ंक्शन क्या जनरेट करता है?
21
Which statement is used to skip the current iteration and continue with the next one? / वर्तमान इटरेशन को छोड़कर अगले इटरेशन पर जाने के लिए किस स्टेटमेंट का उपयोग किया जाता है?
22
What is the purpose of the 'pass' statement in Python? / पायथन में 'pass' स्टेटमेंट का क्या उद्देश्य है?
23
Which of the following creates an empty list? / निम्नलिखित में से कौन सी खाली लिस्ट बनाता है?
24
What is the output of [1,2,3].index(2)? / [1,2,3].index(2) का आउटपुट क्या है?
25
Which method removes an item from a list by value? / लिस्ट से वैल्यू द्वारा आइटम हटाने के लिए किस मेथड का उपयोग किया जाता है?
26
What is the output of tuple([1,2,3])? / tuple([1,2,3]) का आउटपुट क्या है?
27
Which method is used to add multiple elements to a set? / सेट में कई एलिमेंट जोड़ने के लिए किस मेथड का उपयोग किया जाता है?
28
What is the output of {'a':1, 'b':2}.keys()? / {'a':1, 'b':2}.keys() का आउटपुट क्या है?
29
What is the purpose of the 'default' argument in dictionary get() method? / डिक्शनरी get() मेथड में 'default' आर्ग्युमेंट का क्या उद्देश्य है?
30
Which of the following demonstrates the top-down approach? / निम्नलिखित में से कौन सा टॉप-डाउन अप्रोच को दर्शाता है?
31
What is a function parameter? / फंक्शन पैरामीटर क्या होता है?
32
What is the scope of a local variable? / लोकल वेरिएबल का स्कोप क्या होता है?
33
What does the 'return' statement do in a function? / फंक्शन में 'return' स्टेटमेंट क्या करता है?
34
What is a default argument in a function? / फंक्शन में डिफ़ॉल्ट आर्ग्युमेंट क्या होता है?
35
What is the purpose of '*args' in a function definition? / फंक्शन डेफिनिशन में '*args' का क्या उद्देश्य है?
36
What is the purpose of '**kwargs' in a function definition? / फंक्शन डेफिनिशन में '**kwargs' का क्या उद्देश्य है?
37
What is recursion? / रिकर्सन क्या है?
38
What is the base case in recursion? / रिकर्सन में बेस केस क्या होता है?
39
Which of the following is a built-in function in Python? / निम्नलिखित में से कौन सा पायथन में बिल्ट-इन फ़ंक्शन है?
40
What does the 'eval()' function do? / 'eval()' फ़ंक्शन क्या करता है?
41
Which function returns a random integer between a and b (inclusive)? / कौन सा फ़ंक्शन a और b के बीच (समेत) एक रैंडम इंटीजर रिटर्न करता है?
42
What is a text file? / टेक्स्ट फाइल क्या होती है?
43
What is the difference between 'r' and 'rb' modes? / 'r' और 'rb' मोड के बीच क्या अंतर है?
44
What happens if you open an existing file in 'w' mode? / मौजूदा फाइल को 'w' मोड में खोलने पर क्या होता है?
45
What does the 'read()' method return when the file is empty? / फाइल खाली होने पर 'read()' मेथड क्या रिटर्न करता है?
46
What is the purpose of the 'with' statement in file handling? / फाइल हैंडलिंग में 'with' स्टेटमेंट का क्या उद्देश्य है?
47
What is a namespace in Python? / पायथन में नेमस्पेस क्या है?
48
What is the correct order of LEGB rule? / LEGB नियम का सही क्रम क्या है?
49
Which keyword is used to create an alias while importing a module? / मॉड्यूल इंपोर्ट करते समय एलियास बनाने के लिए किस कीवर्ड का उपयोग किया जाता है?
50
What is the output of 'import math; print(dir(math))'? / 'import math; print(dir(math))' का आउटपुट क्या है?
51
What is NumPy primarily used for? / NumPy का मुख्य उपयोग किस लिए किया जाता है?
52
What is the output of np.array([1,2,3]) * 2? / np.array([1,2,3]) * 2 का आउटपुट क्या है?
53
What does the 'reshape()' method do in NumPy? / NumPy में 'reshape()' मेथड क्या करता है?
54
What is the output of np.zeros((2,3))? / np.zeros((2,3)) का आउटपुट क्या है?
55
What is the output of np.ones(3)? / np.ones(3) का आउटपुट क्या है?
56
What does np.arange(2, 10, 2) return? / np.arange(2, 10, 2) क्या रिटर्न करता है?
57
Which of the following is NOT a valid NumPy array attribute? / निम्नलिखित में से कौन सा NumPy एरे का मान्य एट्रिब्यूट नहीं है?
58
What is the output of arr = np.array([[1,2],[3,4]]); print(arr[0][1])? / arr = np.array([[1,2],[3,4]]); print(arr[0][1]) का आउटपुट क्या है?
59
What does 'arr.T' do in NumPy? / NumPy में 'arr.T' क्या करता है?
60
What is the output of print(2 * 3 + 4 ** 2)? / print(2 * 3 + 4 ** 2) का आउटपुट क्या है?
61
Which of the following is a valid set operation? / निम्नलिखित में से कौन सा सेट ऑपरेशन मान्य है?
62
What is the purpose of the 'filter()' function? / 'filter()' फ़ंक्शन का क्या उद्देश्य है?
63
What is the output of list(filter(lambda x: x%2==0, [1,2,3,4,5]))? / list(filter(lambda x: x%2==0, [1,2,3,4,5])) का आउटपुट क्या है?
64
What is the purpose of the 'reduce()' function? / 'reduce()' फ़ंक्शन का क्या उद्देश्य है?
65
Which module contains the 'reduce()' function? / 'reduce()' फ़ंक्शन किस मॉड्यूल में होता है?
66
What is the output of print('hello'.count('l'))? / print('hello'.count('l')) का आउटपुट क्या है?
67
What does the 'end' parameter in print() function specify? / print() फ़ंक्शन में 'end' पैरामीटर क्या निर्दिष्ट करता है?
68
Which of the following is a valid way to read a CSV file using NumPy? / NumPy का उपयोग करके CSV फाइल पढ़ने का मान्य तरीका निम्नलिखित में से कौन सा है?
69
What is the purpose of the 'flatten()' method in NumPy? / NumPy में 'flatten()' मेथड का क्या उद्देश्य है?
70
What does the 'std()' method in NumPy calculate? / NumPy में 'std()' मेथड क्या गणना करता है?
71
What is the purpose of the 'mean()' method in NumPy? / NumPy में 'mean()' मेथड का क्या उद्देश्य है?
72
What is the output of np.sum([1,2,3,4])? / np.sum([1,2,3,4]) का आउटपुट क्या है?
73
Which of the following creates a 3x3 identity matrix in NumPy? / NumPy में 3x3 आइडेंटिटी मैट्रिक्स बनाने का सही तरीका निम्नलिखित में से कौन सा है?
74
What is the output of np.array([1,2,3]) + np.array([4,5,6])? / np.array([1,2,3]) + np.array([4,5,6]) का आउटपुट क्या है?
75
What is the purpose of the 'squeeze()' method in NumPy? / NumPy में 'squeeze()' मेथड का क्या उद्देश्य है?
76
What does the 'copy()' method do in NumPy? / NumPy में 'copy()' मेथड क्या करता है?
77
What is the difference between a view and a copy in NumPy? / NumPy में व्यू और कॉपी के बीच क्या अंतर है?
78
What is the output of np.random.rand(3)? / np.random.rand(3) का आउटपुट क्या है?
79
Which function is used to load data from a text file into a NumPy array? / टेक्स्ट फाइल से NumPy एरे में डेटा लोड करने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
80
What is the purpose of the 'concatenate()' function in NumPy? / NumPy में 'concatenate()' फ़ंक्शन का क्या उद्देश्य है?
81
What is the output of np.array([[1,2],[3,4]]).shape? / np.array([[1,2],[3,4]]).shape का आउटपुट क्या है?
82
What is the purpose of the 'astype()' method in NumPy? / NumPy में 'astype()' मेथड का क्या उद्देश्य है?
83
Which of the following is NOT a valid way to create a NumPy array? / NumPy एरे बनाने का निम्नलिखित में से कौन सा तरीका मान्य नहीं है?
84
What does the 'max()' function return when used on a dictionary? / डिक्शनरी पर उपयोग किए जाने पर 'max()' फ़ंक्शन क्या रिटर्न करता है?
85
What is the output of list('hello')? / list('hello') का आउटपुट क्या है?
86
What is the purpose of the 'zip()' function? / 'zip()' फ़ंक्शन का क्या उद्देश्य है?
87
What is the output of list(zip([1,2],['a','b']))? / list(zip([1,2],['a','b'])) का आउटपुट क्या है?
88
Which of the following is a valid way to create a dictionary from two lists? / दो लिस्ट से डिक्शनरी बनाने का मान्य तरीका निम्नलिखित में से कौन सा है?
89
What is the purpose of the 'sorted()' function? / 'sorted()' फ़ंक्शन का क्या उद्देश्य है?
90
What is the difference between sorted() and list.sort()? / sorted() और list.sort() के बीच क्या अंतर है?
91
What is the output of print('\x48\x69')? / print('\x48\x69') का आउटपुट क्या है?
92
Which method is used to encode a string into bytes? / स्ट्रिंग को बाइट्स में एनकोड करने के लिए किस मेथड का उपयोग किया जाता है?
93
What is the purpose of the 'del' statement in Python? / पायथन में 'del' स्टेटमेंट का क्या उद्देश्य है?
94
Which of the following is NOT a valid Python string method? / निम्नलिखित में से कौन सा पायथन स्ट्रिंग मेथड मान्य नहीं है?
95
What will be the output of the following code? print(3 * '5') / निम्नलिखित कोड का आउटपुट क्या होगा? print(3 * '5')
96
What does the 'any()' function return in Python? / पायथन में 'any()' फ़ंक्शन क्या रिटर्न करता है?
97
Which of the following is used to write multiple lines to a file in Python? / पायथन में फाइल में कई लाइनें लिखने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
98
What does the 'np.random.seed(42)' function do in NumPy? / NumPy में 'np.random.seed(42)' फ़ंक्शन क्या करता है?
99
What is the output of 'abcde'.find('cd')? / 'abcde'.find('cd') का आउटपुट क्या है?
100
Which of the following is a valid Python bitwise operator? / निम्नलिखित में से कौन सा पायथन में वैलिड बिटवाइज ऑपरेटर है?
Answered: 0 / 100