Yahan hai O Level M3-R5 July 2025 paper ka interactive online test — jisme aap poora paper ek real exam ki tarah solve kar sakte hain. Is test mein aap apna time bhi dekh sakte hain aur answer check bhi kar sakte hain. Hindi-English questions ke saath diya gaya format students ke liye exam practice mein bahut helpful hai. Ek click mein test shuru karo aur dekho ki aap kitna prepared ho.

Online Mock Test of O Level Previous Paper M3-R5 July 2025
M3R5 July 2025
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निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following code?
M = [‘b’ * x for x in range(4)]
print(M)CorrectIncorrect - Question 2 of 100
2. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following statements?
x = [‘Today’, ‘Tomorrow’, ‘Yesterday’]
y = x[1]
print(y)CorrectIncorrect - Question 3 of 100
3. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = [25, 35, 45]
y = x[0]
print(y)CorrectIncorrect - Question 4 of 100
4. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = [10, 20, 30]
y = x[1] + x[2]
print(y)CorrectIncorrect - Question 5 of 100
5. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following statements?
x = [[0.0, 1.0, 2.0], [4.0, 5.0, 6.0]]
y = x[1][2]
print(y)CorrectIncorrect - Question 6 of 100
6. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = [[0.0, 1.0, 2.0], [4.0, 5.0, 6.0]]
y = x[0][1] + x[1][0]
print(y)CorrectIncorrect - Question 7 of 100
7. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = [‘Sunday’, ‘Monday’, ‘Tuesday’]
y = x[1] + x[2]
print(y)CorrectIncorrect - Question 8 of 100
8. Question
1 pointsनिम्नलिखित का आउटपुट क्या होगा?
What is the output of the following?
print(max([1, 2, 3, 4], [4, 5, 6], [7]))CorrectIncorrect - Question 9 of 100
9. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = {0:4, 1:8, 2:16, 3:32}
print(x.keys())CorrectIncorrect - Question 10 of 100
10. Question
1 pointsनिम्नलिखित कोड का परिणाम क्या होगा?
What will be the output of the following code?
a = set(‘abc’)
b = set(‘cdef’)
print(a & b)CorrectIncorrect - Question 11 of 100
11. Question
1 pointsनिम्नलिखित में से कौन सी एरर तब आती है जब हम किसी फाइल को राइट मोड में खोलने का प्रयास करते हैं जो मौजूद नहीं है?
Which of the following error is returned when we try to open a file in write mode which does not exist?CorrectIncorrect - Question 12 of 100
12. Question
1 pointsनिम्नलिखित का आउटपुट क्या होगा?
What will be the output of the following?
print(sum(1,2,3))CorrectIncorrect - Question 13 of 100
13. Question
1 pointsनिम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
example = “helle”
example.rfind(“e”)CorrectIncorrect - Question 14 of 100
14. Question
1 pointsनिम्नलिखित में से कौन सा शब्द Python भाषा का कीवर्ड नहीं है?
Which of the following words is not a keyword of python language?CorrectIncorrect - Question 15 of 100
15. Question
1 pointsएक स्ट्रिंग x = “hello” को देखते हुए x.count (‘I’) का आउटपुट क्या होगा?
Given a string x = “hello”, What is the output of x.count(‘I’)?CorrectIncorrect - Question 16 of 100
16. Question
1 pointsनिम्नलिखित स्यूडो कोड का आउटपुट क्या होगा?
What will be the output of the following pseudo code?
Integer a, b
Set a = 10, b = 5
a = a mod (a – 6)
b = b mod (b – 2)
Print a – bCorrectIncorrect - Question 17 of 100
17. Question
1 pointsनिम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
from math import *
floor(11.7)CorrectIncorrect - Question 18 of 100
18. Question
1 pointsनिम्नलिखित पायथन कोड का मूल्य क्या है?
What is the value of the following Python code?
print(36 / 4)CorrectIncorrect - Question 19 of 100
19. Question
1 pointsनिम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
list1 = [1, 3]
list2 = list1
list1[0] = 4
print(list2)CorrectIncorrect - Question 20 of 100
20. Question
1 pointsपाइथन ________ नमक एक कंस्ट्रक का उपयोग करते हुए, टाइम पर अनाम कार्यो के निर्माण को स्पोर्ट करता है।
Python supports the creation of anonymous functions at runtime, using a construct called ________CorrectIncorrect - Question 21 of 100
21. Question
1 pointsनिम्नलिखित कोड का परिणाम क्या है ?
What is the output of the following code?
import numpy as np
a = np.array([1,2,3])
print(a.ndim)CorrectIncorrect - Question 22 of 100
22. Question
1 pointsनिम्नलिखित पायथन कोड का आउटपुट क्या है?
What is the output of following Python code?
print(5 * (2 // 3))CorrectIncorrect - Question 23 of 100
23. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = {0:4, 1:8, 2:16, 3:32}
print(x.items())CorrectIncorrect - Question 24 of 100
24. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = {1:’Jan’, 2:’Feb’, 3:’March’, 4:’April’}
print(x[2])CorrectIncorrect - Question 25 of 100
25. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = {5:4, 8:8, 3:16, 9:32}
print(sorted(x.items()))CorrectIncorrect - Question 26 of 100
26. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 50
if x > 10 and x 15 and x 25 and x < 35:
print('false')
else:
print('not false')CorrectIncorrect - Question 27 of 100
27. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = {0:4, 1:8, 2:16, 3:32}
print(x.values())CorrectIncorrect - Question 28 of 100
28. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 1
while x < 10:
print(x, end=")
x = x + 1CorrectIncorrect - Question 29 of 100
29. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 15
if x > 15:
print(0)
elif x == 15:
print(1)
else:
print(2)CorrectIncorrect - Question 30 of 100
30. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 5
if x > 15:
print(‘yes’)
elif x == 15:
print(‘equal’)
else:
print(‘no’)CorrectIncorrect - Question 31 of 100
31. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 1
y = 4
while x * y < 10:
print(y, end=")
y += 1CorrectIncorrect - Question 32 of 100
32. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 0
y = 4
while x + y < 10:
print(x, end=")
x += 1CorrectIncorrect - Question 33 of 100
33. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 0
y = 4
while x + y < 10:
x += 1
print(x, end=")CorrectIncorrect - Question 34 of 100
34. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 1
y = 4
while x * y < 10:
print(y, end=")
x += 1
y += 1CorrectIncorrect - Question 35 of 100
35. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = {0:4, 1:8, 2:16, 3:32}
print(list(x.values())[2])CorrectIncorrect - Question 36 of 100
36. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 0
while x < 10:
print(x, end=")
x += 4CorrectIncorrect - Question 37 of 100
37. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
for i in range(1,25,5):
print(i, end=’ ‘)CorrectIncorrect - Question 38 of 100
38. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = [‘P’, ‘y’, ‘t’, ‘h’, ‘o’, ‘n’]
for i in x:
print(i, end=””)CorrectIncorrect - Question 39 of 100
39. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = (‘a’, ‘b’, ‘c’, ‘d’)
for i in x:
print(i, end=”)CorrectIncorrect - Question 40 of 100
40. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = {‘x’, ‘z’, ‘y’}
for i in x:
print(i, end=””)CorrectIncorrect - Question 41 of 100
41. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = {‘z:1’, ‘y:2’, ‘x:3’}
for i in x:
print(i, end=”)CorrectIncorrect - Question 42 of 100
42. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = [‘P’, ‘y’, ‘t’, ‘h’, ‘o’, ‘n’]
for i in enumerate(x):
print(i, end=””)CorrectIncorrect - Question 43 of 100
43. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
x = [‘p’, ‘y’, ‘t’, ‘h’, ‘o’, ‘n’]
y = [‘0’, ‘1’, ‘2’, ‘3’, ‘4’, ‘5’]
for i in zip(x, y):
print(i, end=””)CorrectIncorrect - Question 44 of 100
44. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
for i in range(1, 5):
print(i, end=””)
if i == 3:
breakCorrectIncorrect - Question 45 of 100
45. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
for i in range(0, 5):
if i == 2:
break
print(i, end=””)CorrectIncorrect - Question 46 of 100
46. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
for i in range(1, 5):
if i == 3:
continue
print(i, end=”)CorrectIncorrect - Question 47 of 100
47. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
for i in range(0, 5):
print(i, end=””)
if i == 2:
continueCorrectIncorrect - Question 48 of 100
48. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
myvar = 5
def printvar():
print(myvar)
printvar()CorrectIncorrect - Question 49 of 100
49. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
def call(var1=20, var2=5, var3=2):
print(var1 * var2 * var3, end=””)
call()CorrectIncorrect - Question 50 of 100
50. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
def call(var1=20, var2=5, var3=2):
print(var1 * var2 * var3, end=””)
call(5, 9, 7)CorrectIncorrect - Question 51 of 100
51. Question
1 pointsनिम्न कोड का आउटपुट क्या होगा?
What will be the output of the following code?
def call(var1=20, var2=5, var3=2):
print(var1 * var2 * var3, end=””)
call(5, 7)CorrectIncorrect - Question 52 of 100
52. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
y = ‘MCQ’
print(x + y)CorrectIncorrect - Question 53 of 100
53. Question
1 pointsपायथन के इंटरेक्टिव हेल्प मोड में प्रवेश करने के लिए आप क्या टाइप करते हैं?
What do you type to enter the interactive help mode of Python?CorrectIncorrect - Question 54 of 100
54. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
y = lambda x: x*4
print(y(6))CorrectIncorrect - Question 55 of 100
55. Question
1 pointsनिम्नलिखित कथन क्या करते हैं?
What does the following statements do?
from datetime import *
print(getattr(datetime.today(),’hour’))CorrectIncorrect - Question 56 of 100
56. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
import math
print(math.sqrt(4))CorrectIncorrect - Question 57 of 100
57. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
import math
print(math.ceil(21.4))CorrectIncorrect - Question 58 of 100
58. Question
1 pointsनिम्नलिखित कथन क्या करते हैं?
What does the following statements do?
from datetime import *
print(datetime.today().strftime(“%B”))CorrectIncorrect - Question 59 of 100
59. Question
1 pointsनिम्नलिखित कथन क्या करते हैं?
What does the following statements do?
import datetime
print(datetime.datetime.today())CorrectIncorrect - Question 60 of 100
60. Question
1 pointsनिम्नलिखित कथन क्या करते हैं?
What does the following statements do?
from datetime import *
print(datetime.today().strftime(“%d”))CorrectIncorrect - Question 61 of 100
61. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = 27
if x < 25:
print(x)
else:
passCorrectIncorrect - Question 62 of 100
62. Question
1 pointsनिम्नलिखित कथन क्या करते हैं?
What does the following statements do?
from datetime import *
print(getattr(datetime.today(),’year’))CorrectIncorrect - Question 63 of 100
63. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
import math
print(math.floor(67.3))CorrectIncorrect - Question 64 of 100
64. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
import math
print(math.pow(3,2))CorrectIncorrect - Question 65 of 100
65. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
print(x[4])CorrectIncorrect - Question 66 of 100
66. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
print(‘y’ in x)CorrectIncorrect - Question 67 of 100
67. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x=’%s MCQ %s’ %(‘Python’, ‘Test’)
print(x)CorrectIncorrect - Question 68 of 100
68. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
print(x[:])CorrectIncorrect - Question 69 of 100
69. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘{} 3 {}’.format(‘Python’, ‘Test’)
print(x)CorrectIncorrect - Question 70 of 100
70. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
print(‘p’ not in x)CorrectIncorrect - Question 71 of 100
71. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
‘{1} for {0}’.format(‘Python’, ‘Questions’)
print(x)CorrectIncorrect - Question 72 of 100
72. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
print(x[2:4])CorrectIncorrect - Question 73 of 100
73. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
print(x*3)CorrectIncorrect - Question 74 of 100
74. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python %d Version’ %(3)
print(x)CorrectIncorrect - Question 75 of 100
75. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python %c or Python %c’ %(‘2’, ‘3’)
print(x)CorrectIncorrect - Question 76 of 100
76. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python %.1f or Python %.2f’ %(2.7, 3.51)
print(x)CorrectIncorrect - Question 77 of 100
77. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
print(x.capitalize())CorrectIncorrect - Question 78 of 100
78. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘python job interview’
print(x.title())CorrectIncorrect - Question 79 of 100
79. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा ?
What will be the output of the following statements?
x = ‘python jobs’
print(x.upper())CorrectIncorrect - Question 80 of 100
80. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा ?
What will be the output of the following statements?
x = ‘python jobs’
print(x.lower())CorrectIncorrect - Question 81 of 100
81. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python Jobs’
print(x.swapcase())CorrectIncorrect - Question 82 of 100
82. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
print(x.join(’33’))CorrectIncorrect - Question 83 of 100
83. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python Test’
print(x.join(’33’))CorrectIncorrect - Question 84 of 100
84. Question
1 pointsWhat will be the output of the following statements?
x = ‘Python’
y = ‘3’
print(x.Istrip()+y.Istrip())CorrectIncorrect - Question 85 of 100
85. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python’
y = ‘3’
print(x.rstrip()+y.rstrip())CorrectIncorrect - Question 86 of 100
86. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = open(‘python.csv’, ‘w’)
print(x.mode)CorrectIncorrect - Question 87 of 100
87. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open(‘python.bat’, ‘wb’)CorrectIncorrect - Question 88 of 100
88. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘MCQs’
print(x.center(10,”*”))CorrectIncorrect - Question 89 of 100
89. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open(‘python.csv’, ‘r’)CorrectIncorrect - Question 90 of 100
90. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open (‘python.txt’, ‘w+’)CorrectIncorrect - Question 91 of 100
91. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open (‘python.csv’, ‘a’)CorrectIncorrect - Question 92 of 100
92. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = open(‘python.txt’, ‘r’)
print(x.name)CorrectIncorrect - Question 93 of 100
93. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open(‘python.txt’, ‘r+’)CorrectIncorrect - Question 94 of 100
94. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open (‘python.txt’, ‘a+’)CorrectIncorrect - Question 95 of 100
95. Question
1 pointsनिम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements?
x = ‘Python Pi Py Pip’
print(x.count(‘p’))CorrectIncorrect - Question 96 of 100
96. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open(‘python.bat’, ‘ab’)CorrectIncorrect - Question 97 of 100
97. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open(‘python.bat’, ‘rb’)CorrectIncorrect - Question 98 of 100
98. Question
1 pointsनिम्नलिखित कथन क्या करता है?
What does the following statement do?
x = open(‘python.csv’, ‘w’)CorrectIncorrect - Question 99 of 100
99. Question
1 pointsरिकर्सिव फंक्शन है ________
Recursive function is ________CorrectIncorrect - Question 100 of 100
100. Question
1 pointsलिस्ट में एक एलिमेंट (5) जोड़ने के लिए किस फंक्शन का उपयोग किया जाता है?
CorrectIncorrect
Umeed hai aapne M3-R5 O Level NIELIT July 2025 ke previous papers ka mock test achhi tarah se complete kar liya hoga.
ओ लेवल के सिलेबस वाइज 10,000 से भी ज्यादा प्रश्नों के ऑनलाइन टेस्ट करने के लिए नीचे गए गए बटन को दबाइये!
Kya aap M3-R5 O Level July 2025 ke previous papers PDF mein download karna chahte hain? Neeche diye gaye button par click karein.
Kya aap M3-R5 O Level July 2025 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. 😊
