Important Notice:
M3-R5.1 Model Paper — Set 1
100 Questions  •  M3-R5.1
90:00
← Back
1
What is the first step in the basic model of computation?
2
एल्गोरिदम को दर्शाने के लिए किस ग्राफिकल टूल का उपयोग किया जाता है? (Which graphical tool is used to represent an algorithm?)
3
Which shape is used for a decision box in a flowchart?
4
फ्लोचार्ट में प्रोसेसिंग को किस आकृति द्वारा दर्शाया जाता है? (In a flowchart, processing is represented by which shape?)
5
What is the correct sequence of steps to exchange values of two variables A and B?
6
दो नंबरों का GCD (Greatest Common Divisor) निकालने के लिए कौन सा एल्गोरिदम प्रसिद्ध है? (Which algorithm is famous for finding GCD of two numbers?)
7
To reverse the digits of an integer (e.g., 123 to 321), which loop is most suitable?
8
पायथन इंटरप्रेटर का क्या कार्य है? (What is the function of the Python Interpreter?)
9
Which of the following is a valid Python numeric data type?
10
पायथन में स्ट्रिंग इंडेक्सिंग 'Hello'[1] का आउटपुट क्या होगा? (What is the output of string indexing 'Hello'[1] in Python?)
11
Which operator is used for string concatenation in Python?
12
पायथन में 'input()' फ़ंक्शन हमेशा डेटा को किस डेटाटाइप में रिटर्न करता है? (In Python, the 'input()' function always returns data as which datatype?)
13
What will be the output of: print(2 ** 3 ** 2)?
14
पायथन में 'break' स्टेटमेंट का क्या उपयोग है? (What is the use of the 'break' statement in Python?)
15
Which keyword is used to define a function in Python?
16
पायथन में कौन सा डेटा टाइप म्यूटेबल (बदलने योग्य) है? (Which data type is mutable in Python?)
17
What is the output of: 'Python'[ : : -1]?
18
निम्नलिखित में से कौन सा पायथन में एक लूपिंग स्टेटमेंट नहीं है? (Which of the following is not a looping statement in Python?)
19
Which function converts a string of digits into an integer in Python?
20
एल्गोरिदम में 'Sequence' संरचना का क्या अर्थ है? (What does 'Sequence' structure mean in an algorithm?)
21
What does the 'sqrt()' function require to work in Python?
22
पायथन में 'Tuple' को किस चिन्ह का उपयोग करके बनाया जाता है? (In Python, a 'Tuple' is created using which symbol?)
23
Which method is used to add an element at the end of a list?
24
फ्लोचार्ट में पैरेललोग्राम (समानांतर चतुर्भुज) का उपयोग किसके लिए किया जाता है? (In a flowchart, a parallelogram is used for?)
25
What is the value of 'result'? result = 10 + 3 * 2
26
पायथन में 'continue' स्टेटमेंट का उपयोग किस लिए किया जाता है? (What is the 'continue' statement used for in Python?)
27
Which mode opens a file for writing in Python?
28
न्यूमपाई (NumPy) में 'ndarray' की एक विशेषता क्या है? (What is a characteristic of 'ndarray' in NumPy?)
29
What does the 'LEGB' rule stand for in Python scope?
30
एल्गोरिदम की सबसे अच्छी परिभाषा क्या है? (What is the best definition of an algorithm?)
31
What is the output of: print(type(10))?
32
पायथन में फाइल बंद करने के लिए किस फ़ंक्शन का उपयोग किया जाता है? (Which function is used to close a file in Python?)
33
Which operator is used for 'floor division' in Python?
34
डॉकस्ट्रिंग (DocString) का क्या उद्देश्य है? (What is the purpose of a DocString?)
35
What is the result of: max([10, 20, 30, 5])?
36
प्राइम नंबर (अभाज्य संख्या) की जांच करते समय, हम लूप को किस मान तक चलाते हैं? (While checking for a prime number, up to what value do we run the loop?)
37
Which of the following is a valid keyword in Python?
38
पायथन में 'tell()' फ़ंक्शन क्या रिटर्न करता है? (What does the 'tell()' function return in Python?)
39
What is the output of: [1, 2, 3] + [4, 5]?
40
न्यूमपाई (NumPy) एरे बनाने का सबसे सामान्य तरीका क्या है? (What is the most common way to create a NumPy array?)
41
Which of the following is a Relational operator?
42
फाइबोनैचि श्रृंखला (Fibonacci series) में अगली संख्या कैसे प्राप्त की जाती है? (How is the next number in the Fibonacci series obtained?)
43
What does the 'rstrip()' function do?
44
पायथन में 'pass' स्टेटमेंट का क्या अर्थ है? (What does the 'pass' statement mean in Python?)
45
Which function is used to read a single line from a file?
46
दशमलव 10 का बाइनरी समतुल्य क्या है? (What is the binary equivalent of decimal 10?)
47
What is a 'module' in Python?
48
न्यूमपाई में एरे स्लाइसिंग arr[2:5] का क्या अर्थ है? (What does array slicing arr[2:5] mean in NumPy?)
49
Which of the following is a Logical operator?
50
फ्लोचार्ट में ओवल (अंडाकार) आकार का उपयोग किसके लिए किया जाता है? (The oval shape in a flowchart is used for?)
51
What is the output of: 'abc'.upper()?
52
पायथन में रिकर्सन क्या है? (What is recursion in Python?)
53
Which of the following is used for comments in Python?
54
न्यूमपाई में 'shape' एट्रिब्यूट क्या बताता है? (What does the 'shape' attribute tell in NumPy?)
55
What is the default mode when using the 'open()' function?
56
डिबगिंग (Debugging) का क्या अर्थ है? (What is the meaning of Debugging?)
57
What is the result of 7 % 3?
58
पायथन में 'seek()' फ़ंक्शन का क्या कार्य है? (What does the 'seek()' function do in Python?)
59
Which of the following creates a Dictionary?
60
न्यूमपाई एरे में 'dtype' एट्रिब्यूट क्या दर्शाता है? (What does the 'dtype' attribute represent in a NumPy array?)
61
What is the purpose of the 'random' module?
62
पायथन में 'elif' का क्या अर्थ है? (What does 'elif' stand for in Python?)
63
What is the output of: 'Hello'.find('e')?
64
फ्लोचार्ट में लूप को किस प्रकार दर्शाया जाता है? (How is a loop represented in a flowchart?)
65
Which function returns the length of a list?
66
न्यूमपाई में np.zeros(5) का आउटपुट क्या होता है? (What is the output of np.zeros(5) in NumPy?)
67
Which of the following is used for 'selection' in programming?
68
पायथन में वेरिएबल 'my_name' किस नियम का पालन करता है? (What naming rule does the variable 'my_name' follow in Python?)
69
What is the output of: print(3 * 'Hi')?
70
फाइल हैंडलिंग में 'w+' मोड क्या करता है? (What does 'w+' mode do in file handling?)
71
What is a 'Syntax Error'?
72
न्यूमपाई में np.arange(3) का आउटपुट क्या है? (What is the output of np.arange(3) in NumPy?)
73
Which keyword is used to import a module?
74
पायथन में 'global' कीवर्ड का उपयोग क्यों किया जाता है? (Why is the 'global' keyword used in Python?)
75
What does the 'title()' method do to a string?
76
एरे में सबसे बड़ी संख्या ज्ञात करने के लिए किस एल्गोरिदम का उपयोग किया जाता है? (Which algorithm is used to find the largest number in an array?)
77
What is the result of: int(3.14)?
78
न्यूमपाई में स्लाइसिंग के लिए किस ऑपरेटर का उपयोग किया जाता है? (Which operator is used for slicing in NumPy?)
79
Which of the following is a valid 'if' statement?
80
पायथन में 'writelines()' फ़ंक्शन क्या करता है? (What does the 'writelines()' function do in Python?)
81
What is the output of: bool([])?
82
प्रोग्रामिंग में कंस्टेंट (Constant) क्या होता है? (What is a Constant in programming?)
83
What is the use of the 'split()' method?
84
न्यूमपाई में 'np.linspace(0, 10, 5)' का क्या अर्थ है? (What does 'np.linspace(0, 10, 5)' mean in NumPy?)
85
Which of the following is not a keyword in Python?
86
पायथन में आर्मस्ट्रांग नंबर की जांच करते समय हम किस संक्रिया का उपयोग करते हैं? (While checking for an Armstrong number, which operation do we use?)
87
What does the 'isdigit()' method return?
88
फाइल हैंडलिंग में कमांड लाइन आर्ग्युमेंट्स (Command Line Arguments) कहाँ से आते हैं? (Where do Command Line Arguments come from in file handling?)
89
What is the primary difference between a list and a tuple?
90
न्यूमपाई में 'reshape()' फ़ंक्शन क्या करता है? (What does the 'reshape()' function do in NumPy?)
91
What is the output of: 'Python'.startswith('Py')?
92
प्रोग्राम में डॉक्यूमेंटेशन (Documentation) का क्या उद्देश्य है? (What is the purpose of Documentation in a program?)
93
Which operator has the highest precedence in Python?
94
पायथन में 'eval()' फ़ंक्शन क्या करता है? (What does the 'eval()' function do in Python?)
95
What is a 'Flow line' in a flowchart?
96
न्यूमपाई एरे में 'size' एट्रिब्यूट क्या बताता है? (What does the 'size' attribute tell in a NumPy array?)
97
What is the value of 'A' if not (10 > 5): A = 10 else: A = 20?
98
पायथन में 'floor()' फ़ंक्शन का उपयोग करने के लिए किस मॉड्यूल को इंपोर्ट करना होता है? (Which module must be imported to use the 'floor()' function in Python?)
99
What is the output of the following code? for i in range(2, 10, 3): print(i, end=' ')
100
न्यूमपाई में निम्नलिखित में से कौन सा एरे 'आउटपुट' होगा? import numpy as np np.array([[1,2],[3,4]])[0,1]
Answered: 0 / 100