Important Notice:
M3-R5.1 Model Paper — Set 6
100 Questions  •  M3-R5.1
90:00
← Back
1
What is the purpose of a decision box in a flowchart? / फ्लोचार्ट में डिसीजन बॉक्स का क्या उद्देश्य है?
2
What does the term 'debugging' refer to? / 'डिबगिंग' शब्द का क्या अर्थ है?
3
What is the octal equivalent of binary number 1111? / बाइनरी संख्या 1111 का ऑक्टल समतुल्य क्या है?
4
What is the hexadecimal equivalent of binary number 11111111? / बाइनरी संख्या 11111111 का हेक्साडेसिमल समतुल्य क्या है?
5
What is the algorithm to find the minimum value in an array? / एरे में न्यूनतम मान ज्ञात करने का एल्गोरिदम क्या है?
6
What is the algorithm to reverse the order of elements in an array? / एरे के तत्वों के क्रम को उलटने का एल्गोरिदम क्या है?
7
What is the output of 'Hello'[1:4]? / 'Hello'[1:4] का आउटपुट क्या है?
8
What is the output of 'Python'[-3:-1]? / 'Python'[-3:-1] का आउटपुट क्या है?
9
What is the result of 'abc' * 3? / 'abc' * 3 का परिणाम क्या है?
10
What is the output of 'A' + 'B'? / 'A' + 'B' का आउटपुट क्या है?
11
What is the value of 5 + 5 == 10? / 5 + 5 == 10 का मान क्या है?
12
What is the output of not (10 < 5)? / not (10 < 5) का आउटपुट क्या है?
13
What is the output of 3 != 4? / 3 != 4 का आउटपुट क्या है?
14
Which statement is used to create an infinite loop in Python? / पायथन में अनंत लूप बनाने के लिए किस स्टेटमेंट का उपयोग किया जाता है?
15
What is the purpose of the 'assert' statement? / 'assert' स्टेटमेंट का क्या उद्देश्य है?
16
What is the output of assert 5 > 10, 'Error message'? / assert 5 > 10, 'Error message' का आउटपुट क्या है?
17
What is a list in Python? / पायथन में लिस्ट क्या है?
18
What is a tuple in Python? / पायथन में टपल क्या है?
19
What is a set in Python? / पायथन में सेट क्या है?
20
What is the output of len([1, [2, 3], 4])? / len([1, [2, 3], 4]) का आउटपुट क्या है?
21
What is the output of [1, 2] + [3, 4]? / [1, 2] + [3, 4] का आउटपुट क्या है?
22
What is the output of [1, 2, 3].insert(1, 10)? / [1, 2, 3].insert(1, 10) का आउटपुट क्या है?
23
What is the output of {1, 2, 3} & {2, 3, 4}? / {1, 2, 3} & {2, 3, 4} का आउटपुट क्या है?
24
What is the output of {1, 2, 3} | {3, 4, 5}? / {1, 2, 3} | {3, 4, 5} का आउटपुट क्या है?
25
What is the output of {1, 2, 3} - {2, 3, 4}? / {1, 2, 3} - {2, 3, 4} का आउटपुट क्या है?
26
What is the output of {1, 2, 3} ^ {2, 3, 4}? / {1, 2, 3} ^ {2, 3, 4} का आउटपुट क्या है?
27
What is the output of {'a':1, 'b':2}.get('c', 'Not Found')? / {'a':1, 'b':2}.get('c', 'Not Found') का आउटपुट क्या है?
28
What is the output of {'a':1, 'b':2}.pop('a')? / {'a':1, 'b':2}.pop('a') का आउटपुट क्या है?
29
What is the output of {'a':1, 'b':2}.setdefault('c', 3)? / {'a':1, 'b':2}.setdefault('c', 3) का आउटपुट क्या है?
30
What is the output of d = {'a':1}; d.update({'b':2}); print(d)? / d = {'a':1}; d.update({'b':2}); print(d) का आउटपुट क्या है?
31
What is a function signature? / फंक्शन सिग्नेचर क्या है?
32
What is the purpose of keyword arguments in Python? / पायथन में कीवर्ड आर्ग्युमेंट्स का क्या उद्देश्य है?
33
What is the output of def f(a, b=10): return a+b; print(f(5, b=5))? / def f(a, b=10): return a+b; print(f(5, b=5)) का आउटपुट क्या है?
34
What is the output of def f(*args): return sum(args); print(f(1,2,3,4))? / def f(*args): return sum(args); print(f(1,2,3,4)) का आउटपुट क्या है?
35
What is the output of def f(**kwargs): return kwargs; print(f(a=1, b=2))? / def f(**kwargs): return kwargs; print(f(a=1, b=2)) का आउटपुट क्या है?
36
What is a closure in Python? / पायथन में क्लोज़र क्या है?
37
What is the output of def outer(x): def inner(y): return x+y; return inner; f = outer(10); print(f(5))? / def outer(x): def inner(y): return x+y; return inner; f = outer(10); print(f(5)) का आउटपुट क्या है?
38
What is the purpose of the 'nonlocal' keyword in nested functions? / नेस्टेड फंक्शन्स में 'nonlocal' कीवर्ड का क्या उद्देश्य है?
39
What is the output of def outer(): x = 10; def inner(): nonlocal x; x = 20; inner(); print(x); outer()? / def outer(): x = 10; def inner(): nonlocal x; x = 20; inner(); print(x); outer() का आउटपुट क्या है?
40
What is the purpose of the 'sys.argv' list? / 'sys.argv' लिस्ट का क्या उद्देश्य है?
41
What is the value of len(sys.argv) when no arguments are passed? / जब कोई आर्ग्युमेंट पास नहीं किया जाता है तो len(sys.argv) का मान क्या है?
42
What is the purpose of the 'os.environ' dictionary? / 'os.environ' डिक्शनरी का क्या उद्देश्य है?
43
What is the output of import os; print(os.name) typically on Windows? / import os; print(os.name) का आउटपुट विंडोज़ पर आमतौर पर क्या है?
44
What is the purpose of the 'sys.exit()' function? / 'sys.exit()' फ़ंक्शन का क्या उद्देश्य है?
45
What is the purpose of the 'sys.path' list? / 'sys.path' लिस्ट का क्या उद्देश्य है?
46
What is the purpose of the 'sys.stdin' object? / 'sys.stdin' ऑब्जेक्ट का क्या उद्देश्य है?
47
What is the purpose of the 'sys.stdout' object? / 'sys.stdout' ऑब्जेक्ट का क्या उद्देश्य है?
48
What is the purpose of the 'sys.stderr' object? / 'sys.stderr' ऑब्जेक्ट का क्या उद्देश्य है?
49
What is the purpose of the 'sys.getrecursionlimit()' function? / 'sys.getrecursionlimit()' फ़ंक्शन का क्या उद्देश्य है?
50
What is the purpose of the 'sys.setrecursionlimit()' function? / 'sys.setrecursionlimit()' फ़ंक्शन का क्या उद्देश्य है?
51
What is the purpose of the 'os.path.basename()' function? / 'os.path.basename()' फ़ंक्शन का क्या उद्देश्य है?
52
What is the purpose of the 'os.path.dirname()' function? / 'os.path.dirname()' फ़ंक्शन का क्या उद्देश्य है?
53
What is the purpose of the 'os.path.abspath()' function? / 'os.path.abspath()' फ़ंक्शन का क्या उद्देश्य है?
54
What is the purpose of the 'os.path.splitext()' function? / 'os.path.splitext()' फ़ंक्शन का क्या उद्देश्य है?
55
What is the output of os.path.splitext('file.txt')? / os.path.splitext('file.txt') का आउटपुट क्या है?
56
What is the purpose of the 'os.walk()' function? / 'os.walk()' फ़ंक्शन का क्या उद्देश्य है?
57
What is the output of os.walk() typically? / os.walk() का आउटपुट आमतौर पर क्या होता है?
58
What is the purpose of the 'shutil' module? / 'shutil' मॉड्यूल का क्या उद्देश्य है?
59
What does shutil.copy(src, dst) do? / shutil.copy(src, dst) क्या करता है?
60
What does shutil.move(src, dst) do? / shutil.move(src, dst) क्या करता है?
61
What does shutil.rmtree(path) do? / shutil.rmtree(path) क्या करता है?
62
What is the purpose of the 'glob' module? / 'glob' मॉड्यूल का क्या उद्देश्य है?
63
What is the output of glob.glob('*.py')? / glob.glob('*.py') का आउटपुट क्या है?
64
What is the purpose of the 'pickle' module? / 'pickle' मॉड्यूल का क्या उद्देश्य है?
65
What does pickle.dump(obj, file) do? / pickle.dump(obj, file) क्या करता है?
66
What does pickle.load(file) do? / pickle.load(file) क्या करता है?
67
What is the purpose of the 'json' module? / 'json' मॉड्यूल का क्या उद्देश्य है?
68
What does json.dumps(obj) do? / json.dumps(obj) क्या करता है?
69
What does json.loads(s) do? / json.loads(s) क्या करता है?
70
What is the purpose of the 'csv' module? / 'csv' मॉड्यूल का क्या उद्देश्य है?
71
What is the output of csv.reader()? / csv.reader() का आउटपुट क्या है?
72
What is the purpose of the 'time' module? / 'time' मॉड्यूल का क्या उद्देश्य है?
73
What does time.time() return? / time.time() क्या रिटर्न करता है?
74
What does time.sleep(seconds) do? / time.sleep(seconds) क्या करता है?
75
What is the purpose of the 'datetime' module? / 'datetime' मॉड्यूल का क्या उद्देश्य है?
76
What does datetime.datetime.now() return? / datetime.datetime.now() क्या रिटर्न करता है?
77
What is the purpose of the 'calendar' module? / 'calendar' मॉड्यूल का क्या उद्देश्य है?
78
What does calendar.isleap(year) return? / calendar.isleap(year) क्या रिटर्न करता है?
79
What is the purpose of the 're' module? / 're' मॉड्यूल का क्या उद्देश्य है?
80
What does re.search(pattern, string) do? / re.search(pattern, string) क्या करता है?
81
What does re.findall(pattern, string) return? / re.findall(pattern, string) क्या रिटर्न करता है?
82
What does re.sub(pattern, repl, string) do? / re.sub(pattern, repl, string) क्या करता है?
83
What is the purpose of the 'math.sqrt()' function? / 'math.sqrt()' फ़ंक्शन का क्या उद्देश्य है?
84
What is the output of math.sqrt(16)? / math.sqrt(16) का आउटपुट क्या है?
85
What is the purpose of the 'math.pow()' function? / 'math.pow()' फ़ंक्शन का क्या उद्देश्य है?
86
What is the difference between math.pow(x,y) and x**y? / math.pow(x,y) और x**y के बीच क्या अंतर है?
87
What is the purpose of the 'math.fabs()' function? / 'math.fabs()' फ़ंक्शन का क्या उद्देश्य है?
88
What is the purpose of the 'math.gcd()' function? / 'math.gcd()' फ़ंक्शन का क्या उद्देश्य है?
89
What is the output of math.gcd(12, 18)? / math.gcd(12, 18) का आउटपुट क्या है?
90
What is the purpose of the 'math.factorial()' function? / 'math.factorial()' फ़ंक्शन का क्या उद्देश्य है?
91
What is the output of math.factorial(5)? / math.factorial(5) का आउटपुट क्या है?
92
What is the purpose of the 'math.comb()' function? / 'math.comb()' फ़ंक्शन का क्या उद्देश्य है?
93
What is the output of math.comb(5, 2)? / math.comb(5, 2) का आउटपुट क्या है?
94
What is the purpose of the 'math.perm()' function? / 'math.perm()' फ़ंक्शन का क्या उद्देश्य है?
95
What is the output of math.perm(5, 2)? / math.perm(5, 2) का आउटपुट क्या है?
96
What is the purpose of the 'math.isclose()' function? / 'math.isclose()' फ़ंक्शन का क्या उद्देश्य है?
97
What is the purpose of the 'random.choice()' function? / 'random.choice()' फ़ंक्शन का क्या उद्देश्य है?
98
What is the output of random.choice([1,2,3])? / random.choice([1,2,3]) का आउटपुट क्या है?
99
What does random.sample(population, k) do? / random.sample(population, k) क्या करता है?
100
What does random.shuffle(sequence) do? / random.shuffle(sequence) क्या करता है?
Answered: 0 / 100