Ye mock test specially design kiya gaya hai un students ke liye jo apni speed aur accuracy improve karna chahte hain. Test timer automatically chalta hai aur har question ke baad sahi answer milta hai. O Level M3-R5 Jan 2024 ke real questions aapko exam pressure ka feel bhi denge. Practice se perfect bano — test shuru karke apna time record karo.

Online Mock Test of O Level Previous Paper M3-R5 January 2024
M3R5 Jan 2024
Quiz-summary
0 of 100 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
Information
- 100 Multiple Choice Questions will be given.
- It is compulsory to answer each question.
- You have 3 hours to attempt this practice test.
- To start the practice test, click on the “Start Quiz” button below.
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 100 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Categories
- Not categorized 0%
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- Answered
- Review
- Question 1 of 100
1. Question
1 pointsनिम्नलिखित में से कौन सा पायथन में फ़ंक्शन का उपयोग है?
Which of the following is the use of function in Python?CorrectIncorrect - Question 2 of 100
2. Question
1 pointsनिम्नलिखित का आउटपुट क्या है?
What is the output of the following?
x = ‘abcd’
for i in range(x):
print(i)CorrectIncorrect - Question 3 of 100
3. Question
1 pointsनिम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
min(max(False, -3, -4), 2, 7)CorrectIncorrect - Question 4 of 100
4. Question
1 pointsनिम्नलिखित में से कौन सी संख्या निम्न कोड द्वारा कभी भी उत्पन्न नहीं की जा सकती है?
Which of the following numbers can never be generated by the following code?
random.randrange(0, 50)CorrectIncorrect - Question 5 of 100
5. Question
1 pointsनिम्न में से कौन सा आइटम फंक्शन हेडर में मौजूद है?
Which of the following items are present in the function header?CorrectIncorrect - Question 6 of 100
6. Question
1 pointsनिम्नलिखित में से कौन सी फाइल किसी टेक्स्ट एडिटर में खोली जा सकती है?
Which of the following file can be opened in any text editor?CorrectIncorrect - Question 7 of 100
7. Question
1 pointsनिम्नलिखित कोड का परिणाम क्या है?
What is the output of the following code?
y = “I love Python”
y[3] = ‘s’
print(y)CorrectIncorrect - Question 8 of 100
8. Question
1 pointsकिस डेटा प्रकार में अनुक्रमण मान्य नहीं है?
In which data type is indexing not valid?CorrectIncorrect - Question 9 of 100
9. Question
1 pointsनिम्नलिखित कोड खंड क्या प्रिंट करेगा?
What will the following code segment print?
a = True
b = False
c = False
if a or b and c:
print(“HELLO”)
else:
print(“hello”)CorrectIncorrect - Question 10 of 100
10. Question
1 pointsनिम्नलिखित का आउटपुट क्या है?
What is the output of the following?
t = (2, 3, 4, 3.5, 5, 6)
print(sum(t) + t.count(2))CorrectIncorrect - Question 11 of 100
11. Question
1 pointsनिम्नलिखित कोड का परिणाम क्या है?
What is the output of the following code?
a = 50
b = a = a * 5
print(b)CorrectIncorrect - Question 12 of 100
12. Question
1 pointsनिम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
def sayHello():
print(“Hello World!”)
sayHello()
sayHello()CorrectIncorrect - Question 13 of 100
13. Question
1 pointsसही फंक्शन हेडर की पहचान करें।
Identify the correct function header.CorrectIncorrect - Question 14 of 100
14. Question
1 pointsनिम्नलिखित में से कौन सा एक सही है?
Which one of the following is correct?CorrectIncorrect - Question 15 of 100
15. Question
1 pointsFunction के लिए किस कीवर्ड का प्रयोग किया जाता है?
Which keyword is used for function?CorrectIncorrect - Question 16 of 100
16. Question
1 pointsपायथन में किस मॉड्यूल का उपयोग बड़े ऐरे और मैट्रिक्स पर गणितीय ऑपरेशन करने के लिए किया जाता है?
Which module in Python is used for mathematical operations on large arrays and matrices?CorrectIncorrect - Question 17 of 100
17. Question
1 pointsNumPY का पूरा नाम क्या है?
NumPY stands for?CorrectIncorrect - Question 18 of 100
18. Question
1 pointsयदि x = 56.236 है, तो निम्नलिखित पायथन अभिव्यक्ति का आउटपुट क्या होगा?
Which will be the output of the following Python expression if x = 56.236?
print(“%.2f” % x)CorrectIncorrect - Question 19 of 100
19. Question
1 pointsपायथन का ________ मोड टाइप किए गए स्टेटमेंट को तुरंत परिणाम देता है?
Python’s ________ mode returns the typed statement to the result instantly?CorrectIncorrect - Question 20 of 100
20. Question
1 pointsएल्गोरिथम निर्माण के लिए तीन चरण क्या हैं?
What are the three steps for algorithm construction?CorrectIncorrect - Question 21 of 100
21. Question
1 pointsनिम्नलिखित में से कौन सा एक अवैध मोड है?
Which of the following is an invalid mode?CorrectIncorrect - Question 22 of 100
22. Question
1 pointsnumpy का डिफॉल्ट प्रकार क्या है?
What is the default type of numpy?CorrectIncorrect - Question 23 of 100
23. Question
1 pointsपायथन में फाइल को संपूर्ण रूप से डिलीट करने के लिए किस फंक्शन का प्रयोग किया जाता है?
Which function is used to delete a file entirely in Python?CorrectIncorrect - Question 24 of 100
24. Question
1 pointsफ्लोचार्टिंग में वास्तविक निर्देश _______ में दर्शाए गए हैं?
The actual instructions in flowcharting are shown in ________CorrectIncorrect - Question 25 of 100
25. Question
1 pointsएक एल्गोरिथ्म क्या है?
What is an algorithm?CorrectIncorrect - Question 26 of 100
26. Question
1 pointsndarray क्या बताता है?
ndarray refers to?CorrectIncorrect - Question 27 of 100
27. Question
1 pointsपरीक्षण को किस रूप में जाना जाता है?
Testing is known as?CorrectIncorrect - Question 28 of 100
28. Question
1 pointsनिम्नलिखित प्रश्नों का आउटपुट क्या है?
What is the output of the following questions?CorrectIncorrect - Question 29 of 100
29. Question
1 pointsnumpy में प्रचारण क्या है?
_______ is broadcasting in numpy?CorrectIncorrect - Question 30 of 100
30. Question
1 pointsएक विस्तृत फ्लोचार्ट को ________ कहा जाता है?
________ is a detailed flowchart?CorrectIncorrect - Question 31 of 100
31. Question
1 pointsनिम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?
What will be the output of the following code snippet?
Day = [“Sunday” “Monday” “Tuesday” “Wednesday”]
print(Day[-3:-1])CorrectIncorrect - Question 32 of 100
32. Question
1 pointsपायथन में कितने कीवर्ड हैं?
How many keywords are in Python?CorrectIncorrect - Question 33 of 100
33. Question
1 pointsदिए गए कोड का आउटपुट क्या है?
What is the output of the given code?
5 | 2, 5 // 2CorrectIncorrect - Question 34 of 100
34. Question
1 pointsनिम्न में से कौन उच्च स्तरीय भाषाओं की विशेषता नहीं है?
Which of the following is not a characteristic of high-level languages?CorrectIncorrect - Question 35 of 100
35. Question
1 pointsनिम्नलिखित में से कौन सा फंक्शन आवश्यक रूप से केवल पुनरावर्ती को तरक के रूप में स्वीकार नहीं करता?
Which of the following functions does not necessarily accept only recursive as asterisk?CorrectIncorrect - Question 36 of 100
36. Question
1 pointsकोई भी एल्गोरिदम एक प्रोग्राम है?
Any algorithm is a program?CorrectIncorrect - Question 37 of 100
37. Question
1 pointsनिम्नलिखित में से कौन सा चरण एल्गोरिथ्म निर्माण के बाद नहीं आता है?
Which of the following steps does not come after algorithm creation?CorrectIncorrect - Question 38 of 100
38. Question
1 pointsपाइथन में लैम्ब्डा फंक्शन क्या है?
What is Lambda function in Python?CorrectIncorrect - Question 39 of 100
39. Question
1 pointsप्रोग्रामिंग में टाइप कास्टिंग क्या है ?
What is Type Casting in Programming?CorrectIncorrect - Question 40 of 100
40. Question
1 pointsपाइथन लैंग्वेज _______ में मशीनी कोड में अनुवादित होती है ?
Python language is translated into machine code in _________ ?CorrectIncorrect - Question 41 of 100
41. Question
1 pointsनिम्नलिखित में से कौन सा फ़ंक्शन पायथन में एक अंतर्निहित फ़ंक्शन है?
Which of the following functions is a built-in function in Python?CorrectIncorrect - Question 42 of 100
42. Question
1 pointsकिस प्रकार का डेटा स्ट्रक्चर FIFO (First In First Out) सिद्धांत पर काम करता है ?
Which type of data structure works on the FIFO (First In First Out) principle?CorrectIncorrect - Question 43 of 100
43. Question
1 pointsपिकलिंग क्या है?
What is pickling?CorrectIncorrect - Question 44 of 100
44. Question
1 pointsएल्गोरिथ्म प्रक्रिया का उपयोग गणना, डेटा प्रोसेसिंग और _______ कार्यों के लिए किया जाता है ?
The algorithm process is used for calculations, data processing, and _______ tasks?CorrectIncorrect - Question 45 of 100
45. Question
1 pointsफ्लो चार्ट और एल्गोरिदम का उपयोग किया जाता है ?
Flow charts and algorithms are used for?CorrectIncorrect - Question 46 of 100
46. Question
1 pointsप्रोग्रामिंग में कौन सा डाटा टाइप नहीं है ?
Which data type is not used in programming?CorrectIncorrect - Question 47 of 100
47. Question
1 pointsहम पायथन में Numpy ऐरे को सूची में कैसे बदल सकते हैं?
How can we convert the Numpy array to the list in Python?CorrectIncorrect - Question 48 of 100
48. Question
1 pointsNumPy में परिभाषित सबसे महत्वपूर्ण एक ऑब्जेक्ट एन-डायमेंशन ऐरे का प्रकार है जिसे कहा जाता है?
The most important object defined in NumPy is an N-dimensional array type called?CorrectIncorrect - Question 49 of 100
49. Question
1 pointsकिस प्रकार का डेटा स्ट्रक्चर LIFO (Last In First Out) सिद्धांत पर काम करता है ?
Which type of data structure works on the LIFO (Last In First Out) principle?CorrectIncorrect - Question 50 of 100
50. Question
1 pointsनिम्नलिखित में से कौन सा डेटा स्ट्रक्चर अंतिम तत्व तक पहुंचने के लिए रिवर्स ऑर्डर में उपयोग होता है ?
Which of the following data structure is used in reverse order to reach the last element ?CorrectIncorrect - Question 51 of 100
51. Question
1 pointsनिम्नलिखित में से कौन सा डेटा स्ट्रक्चर अधूरी सूची का प्रतिनिधित्व करता है ?
Which of the following data structure represents an incomplete list?CorrectIncorrect - Question 52 of 100
52. Question
1 pointsनिम्न में से कौन सा एक लूप प्रकार नहीं है ?
Which of the following is not a loop type?CorrectIncorrect - Question 53 of 100
53. Question
1 pointsपाइथन में डेटा स्ट्रक्चर _______ के रूप में भी जाना जाता है ?
Data structure in Python is also known as _______?CorrectIncorrect - Question 54 of 100
54. Question
1 pointsपीवीएम का फुल फॉर्म क्या है ?
What is the full form of PVM?CorrectIncorrect - Question 55 of 100
55. Question
1 pointsफ़्लोचार्ट में इनपुट और आउटपुट के लिए किस प्रतीक का उपयोग किया जाता है?
Which symbol is used for input and output in a flowchart?CorrectIncorrect - Question 56 of 100
56. Question
1 pointsक्या abs() फंक्शन math.fabs( ) के बराबर है?
The result of abs() is equal to math.fabs()?CorrectIncorrect - Question 57 of 100
57. Question
1 pointsWhat will be the output of print((range(4)))?
CorrectIncorrect - Question 58 of 100
58. Question
1 pointsनिम्नलिखित में से कौन सा फाइल का ऐट्रीब्यूट नहीं है?
Which one of the following is not an attribute of a file?CorrectIncorrect - Question 59 of 100
59. Question
1 pointsपायथन प्रोग्राम कमांड लाइन से कितने arguments स्वीकार कर सकता है?
How many arguments can a Python program accept from the command line?CorrectIncorrect - Question 60 of 100
60. Question
1 pointsनिम्नलिखित कोड का परिणाम क्या होगा?
What will be the output of the following code?
a = set(‘dcma’)
b = set(‘mlpc’)
print(a^b)CorrectIncorrect - Question 61 of 100
61. Question
1 pointsएल्गोरिदम को ______ द्वारा प्रदर्शित नहीं किया जा सकता है।
Algorithms cannot be represented by _______CorrectIncorrect - Question 62 of 100
62. Question
1 points>>>”2″+”3″ का आउटपुट क्या होगा?
What is the output of >>>”2″+”3″?CorrectIncorrect - Question 63 of 100
63. Question
1 pointsसीएसवी का फुल फॉर्म क्या है?
What is the full form of CSV?CorrectIncorrect - Question 64 of 100
64. Question
1 pointsos.getlogin() function क्या return करता है?
os.getlogin() function returns?CorrectIncorrect - Question 65 of 100
65. Question
1 pointsनिम्नलिखित डेटा प्रकारों में से कौन डुप्लीकेट आइटम्स की अनुमति नहीं देता?
Which of the following data types does not allow duplicate items?CorrectIncorrect - Question 66 of 100
66. Question
1 pointsएक विस्तृत फ्लोचार्ट को क्या कहा जाता है?
A detailed flowchart is known as:CorrectIncorrect - Question 67 of 100
67. Question
1 pointsकोड में त्रुटियों को खोजने की प्रक्रिया को क्या कहा जाता है?
The process of finding errors in code is called:CorrectIncorrect - Question 68 of 100
68. Question
1 pointsLEGB का पूरा अर्थ क्या होता है?
What is the full form of LEGB?CorrectIncorrect - Question 69 of 100
69. Question
1 pointsइस कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
from math import *
floor(3.7)CorrectIncorrect - Question 70 of 100
70. Question
1 pointsनिम्नलिखित कोड का परिणाम क्या है?
What is the output of the following code?
import numpy as np
a = np.array([[1,2,3]])
print(a.shape)CorrectIncorrect - Question 71 of 100
71. Question
1 pointsइस कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
q = [3, 4, 5, 20, 5, 25, 1, 3]
q .pop(1)
print(q)CorrectIncorrect - Question 72 of 100
72. Question
1 pointsनीचे दिए गए कोड का परिणाम क्या होगा?
What is the output of the following code?
x = 10
y = 3
print(divmod(x, y))CorrectIncorrect - Question 73 of 100
73. Question
1 pointsनीचे दिए गए कोड का आउटपुट क्या होगा?
What will be the output of the following code?
import numpy as np
a = np.array([1,2,3,5,8])
b = np.array([0,1,5,4,2])
c = a + b
c = c * a
print(c[2])CorrectIncorrect - Question 74 of 100
74. Question
1 pointsइस कोड का आउटपुट क्या होगा?
What will be the output of the following code?
ms = (‘A’, ‘D’, ‘H’, ‘U’, ‘N’, ‘I’, ‘C’)
print(ms[1:4])CorrectIncorrect - Question 75 of 100
75. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
def addItem(listParam):
listParam += [1]
mylist = [1, 2, 3, 4]
addItem(mylist)
print(len(mylist))CorrectIncorrect - Question 76 of 100
76. Question
1 pointsनीचे दिए गए कोड में लूप कितनी बार चलेगा?
How many times will the loop run?
for a in “56247839”:
print(a)CorrectIncorrect - Question 77 of 100
77. Question
1 pointsनीचे दिए गए स्टेटमेंट में कौन सा मान्य कॉन्स्टैंट है?
Which is a valid constant in Python?CorrectIncorrect - Question 78 of 100
78. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या है?
What is the output of the following code?
print(int())CorrectIncorrect - Question 79 of 100
79. Question
1 pointsपायथन में Math trunc() फ़ंक्शन क्या लौटाता है?
What will the math.trunc() function return in Python?CorrectIncorrect - Question 80 of 100
80. Question
1 pointsकिसी लिस्ट से अंतिम आइटम हटाने के लिए कौन सा फ़ंक्शन उपयोग किया जाता है?
Which function is used to remove the last item from a list?CorrectIncorrect - Question 81 of 100
81. Question
1 pointsफ़ाइल बाइनरी मोड को क्या दर्शाता है?
Which denotes file binary mode?CorrectIncorrect - Question 82 of 100
82. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following?
import sys
sys.stdout.write(‘Welcome\n’)
sys.stdout.write(‘All\n’)CorrectIncorrect - Question 83 of 100
83. Question
1 pointsपायथन में फ़ंक्शन डिक्लेयर करने का सही तरीका क्या है?
How is a function declared in Python?CorrectIncorrect - Question 84 of 100
84. Question
1 points“hello,world”[-6] का आउटपुट क्या होगा?
What value will “hello,world”[-6] print?CorrectIncorrect - Question 85 of 100
85. Question
1 pointsनिम्न में से कौन सा फ़ाइल खोलने के लिए सही मोड नहीं है?
Which of the following is not a correct mode to open a file?CorrectIncorrect - Question 86 of 100
86. Question
1 pointsपायथन में किसी फ़ंक्शन को परिभाषित करने के लिए कौन सा कीवर्ड उपयोग किया जाता है?
Which keyword is used for functions in Python?CorrectIncorrect - Question 87 of 100
87. Question
1 pointsनिम्नलिखित का आउटपुट क्या होगा?
What will be the output of the following?
print ((2, 4) + (1, 5))CorrectIncorrect - Question 88 of 100
88. Question
1 pointsपायथन कोड print((-3)**2) का आउटपुट क्या होगा?
What will be the output of print((-3)**2)?CorrectIncorrect - Question 89 of 100
89. Question
1 pointsनिम्नलिखित कोड द्वारा कितनी संख्याएं मुद्रित होंगी?
How many numbers will be printed by the following code?
def fun(a,b):
for x in range(a,b+1):
if x%3==0:
print(x, end=” “)
fun(100,120)CorrectIncorrect - Question 90 of 100
90. Question
1 pointsफ़ाइल का नाम बदलने के लिए सही सिंटैक्स क्या है?
What is the correct syntax to rename a file?CorrectIncorrect - Question 91 of 100
91. Question
1 pointsपायथन में फ़ाइल खोलने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
Which function is used to open a file in Python?CorrectIncorrect - Question 92 of 100
92. Question
1 pointsब्रेक स्टेटमेंट के बारे में क्या सत्य है?
What is true about a break statement?CorrectIncorrect - Question 93 of 100
93. Question
1 pointsयदि हम फाइल को राइट मोड में खोलते हैं और फाइल मौजूद नहीं है तो क्या होगा?
If we open a file in write mode and the file does not exist, what happens?CorrectIncorrect - Question 94 of 100
94. Question
1 pointsनिम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
max(“what are you”)CorrectIncorrect - Question 95 of 100
95. Question
1 pointsकौन सा एक गणितीय फ़ंक्शन है?
Which one is a mathematical function?CorrectIncorrect - Question 96 of 100
96. Question
1 pointsपायथन कोड का आउटपुट क्या होगा?
What will be the output of the following?
import numpy as np
arr = np.array([1,2,3])
print(arr.shape)CorrectIncorrect - Question 97 of 100
97. Question
1 pointsफ्लो चार्ट में अंडाकार आकार का उपयोग किसके लिए किया जाता है?
In a flowchart, what is the oval shape used for?CorrectIncorrect - Question 98 of 100
98. Question
1 pointsनिम्नलिखित में से कौन सा फ़ाइल खोलने के लिए वैध मोड नहीं है?
Which of the following is not a valid mode to open a file?CorrectIncorrect - Question 99 of 100
99. Question
1 pointsपायथन फ़ाइल को किस प्रारूप में मानी जाती है?
In which format is a Python file considered?CorrectIncorrect - Question 100 of 100
100. Question
1 pointsबिटवाइज़ XOR ऑपरेटर के लिए कौन सा प्रतीक प्रयोग किया जाता है?
Which symbol is used for the bitwise XOR operator?CorrectIncorrect
Umeed hai aapne M3-R5 O Level NIELIT January 2024 ke previous papers ka mock test achhi tarah se complete kar liya hoga.
ओ लेवल के सिलेबस वाइज 10,000 से भी ज्यादा प्रश्नों के ऑनलाइन टेस्ट करने के लिए नीचे गए गए बटन को दबाइये!
Kya aap M3-R5 O Level January 2024 ke previous papers PDF mein download karna chahte hain? Neeche diye gaye button par click karein.
Kya aap M3-R5 O Level January 2024 ke Question Answers padhna chahte hain? To neeche diye gaye button par click karein.
Apna experience neeche comment box ke through humse zarur share karein. Agar koi error mile to humein batana na bhoolen. 😊