Important Notice:
|| CCC Result Nov 2025 ||
|| CCC Marksheet Aug 2025 ||
|| O Level Jul 2026 Reg. Form Last Date: 30/04/2026 ||
|| CCC Mar 2026 Exam Postponed ||
|| CCC/ O Level Exam Full Form ||
|| CCC Result Nov 2025 ||
|| CCC Marksheet Aug 2025 ||
|| O Level Jul 2026 Reg. Form Last Date: 30/04/2026 ||
|| CCC Mar 2026 Exam Postponed ||
|| CCC/ O Level Exam Full Form ||
O Level
Notes
Follow us:
OLevelNotes
Home
O Level Notes
M1-R5.1
M2-R5.1
M3-R5.1
M4-R5.1
CCC
CCC Chapter Wise Notes
CCC Chapter Wise MCQ
CCC Modal Paper
CCC Previous Paper
CCC Assignment
CCC Online Test/Real Portal
Chapter Wise MCQ
M1-R5.1
M2-R5.1
M3-R5.1
M4-R5.1
Model Paper
M1-R5.1
M2-R5.1
M3-R5.1
M4-R5.1
O Level Real Test Portal
Old Paper
M1-R5.1
M2-R5.1
M3-R5.1
M4-R5.1
Practical Paper
M1-R5.1
M2-R5.1
M3-R5.1
M4-R5.1
Assignment
M1-R5.1
M2-R5.1
M3-R5.1
M4-R5.1
Contact Us
ADCA Course
Introduction To Computer
Introduction To OS
MS Office
Tally Prime
Graphic Design
Web Design
Programming Language
Learn Typing
Typing Tutor
Typing Test
KCIT Student
Student Login
KCIT Student
M3-R5.1 Model Paper — Set 2
100 Questions • M3-R5.1
90:00
← Back
1
What is the correct order of the basic model of computation? / कंप्यूटेशन के बेसिक मॉडल का सही क्रम क्या है?
A
Output → Processing → Input → Storage
B
Input → Processing → Output → Storage
C
Storage → Input → Output → Processing
D
Processing → Input → Storage → Output
2
How many outgoing lines typically come from a decision box in a flowchart? / फ्लोचार्ट में डिसीजन (निर्णय) बॉक्स से आमतौर पर कितनी आउटगोइंग लाइनें निकलती हैं?
A
One
B
Two
C
Three
D
Four
3
Which symbol represents the start/end of a flowchart? / फ्लोचार्ट में स्टार्ट/एंड को किस प्रतीक द्वारा दर्शाया जाता है?
A
Rectangle
B
Parallelogram
C
Oval
D
Diamond
4
What does iterative processing mean in an algorithm? / एल्गोरिदम में इटरेटिव प्रोसेसिंग का क्या अर्थ है?
A
Executing statements once
B
Making a decision
C
Repeating a set of statements
D
Jumping to another program
5
What will be the output of the flowchart if condition A > B is true and A = 10, B = 5? / यदि फ्लोचार्ट में कंडीशन A > B सही है और A = 10, B = 5 है, तो आउटपुट क्या होगा?
A
Print B
B
Print A
C
Print A+B
D
Print A-B
6
How can two variables be swapped without a third variable in Python? / पायथन में दो वेरिएबल्स के मान बिना थर्ड वेरिएबल के कैसे बदले जा सकते हैं?
A
A = B; B = A
B
A, B = B, A
C
swap(A, B)
D
A + B = B + A
7
What is the sum of first 10 natural numbers using iterative processing? / इटरेटिव प्रोसेसिंग का उपयोग करके पहली 10 प्राकृतिक संख्याओं का योग क्या है?
A
45
B
50
C
55
D
60
8
What is typed on the command line to access the Python interpreter? / पायथन इंटरप्रेटर को एक्सेस करने के लिए कमांड लाइन पर क्या टाइप किया जाता है?
A
python
B
py
C
python3
D
All of the above
9
Which of the following is a valid integer literal in Python? / पायथन में निम्नलिखित में से कौन सा वैलिड इंटीजर लिटरल है?
A
0b1010
B
0o12
C
0xA
D
All of the above
10
What is the output of string 'World'[ -1 ] in Python? / पायथन में स्ट्रिंग 'World'[ -1 ] का आउटपुट क्या होगा?
A
W
B
o
C
r
D
d
11
Which operator is used for exponentiation in Python? / पायथन में एक्सपोनेंटिएशन के लिए किस ऑपरेटर का उपयोग किया जाता है?
A
^
B
**
C
exp
D
pow
12
What is the default separator in Python's print() function? / पायथन के print() फ़ंक्शन में डिफ़ॉल्ट सेपरेटर क्या है?
A
Comma (,)
B
Space ( )
C
Newline (\n)
D
Tab (\t)
13
What will be the output of: print(10 % 3 == 1)? / print(10 % 3 == 1) का आउटपुट क्या होगा?
A
True
B
False
C
1
D
Error
14
What will 'range(1, 10, 2)' generate with a 'for' loop in Python? / पायथन में 'for' लूप के साथ 'range(1, 10, 2)' क्या जनरेट करेगा?
A
1, 2, 3, 4, 5, 6, 7, 8, 9
B
1, 3, 5, 7, 9
C
2, 4, 6, 8
D
1, 4, 7
15
Which keyword is used to define an anonymous function in Python? / पायथन में एनोनिमस फंक्शन को परिभाषित करने के लिए किस कीवर्ड का उपयोग किया जाता है?
A
def
B
lambda
C
anon
D
function
16
Which data type is immutable in Python? / पायथन में कौन सा डेटा टाइप इम्यूटेबल (अपरिवर्तनीय) है?
A
List
B
Dictionary
C
Set
D
String
17
What is the output of: 'Hello World'.split()[1]? / 'Hello World'.split()[1] का आउटपुट क्या है?
A
Hello
B
World
C
Hello World
D
['Hello', 'World']
18
Which of the following is a valid assignment statement in Python? / निम्नलिखित में से कौन सा पायथन में वैलिड असाइनमेंट स्टेटमेंट है?
A
5 = x
B
x + y = 10
C
x, y = 5, 10
D
x = y = 5 = 10
19
Which function returns the absolute value of a number? / कौन सा फ़ंक्शन किसी संख्या का एब्सोल्यूट वैल्यू रिटर्न करता है?
A
abs()
B
fabs()
C
absolute()
D
mod()
20
What does 'Branching' mean in an algorithm? / एल्गोरिदम में 'Branching' का क्या अर्थ है?
A
Repeating steps
B
Choosing between two or more paths
C
Stopping execution
D
Starting execution
21
What does the 'ceil()' function do? / 'ceil()' फ़ंक्शन क्या करता है?
A
Rounds down to nearest integer
B
Rounds up to nearest integer
C
Returns the integer part
D
Returns the fractional part
22
In Python, a Set is created using which symbol? / पायथन में सेट (Set) को किस चिन्ह का उपयोग करके बनाया जाता है?
A
[ ]
B
{ }
C
( )
D
< >
23
Which method removes the last element from a list? / कौन सा मेथड लिस्ट से अंतिम एलिमेंट को हटाता है?
A
remove()
B
delete()
C
pop()
D
pull()
24
When is a 'Connector' used in a flowchart? / फ्लोचार्ट में 'Connector' का उपयोग कब किया जाता है?
A
To start the flowchart
B
To end the flowchart
C
To connect flow lines across pages
D
To make a decision
25
What is the value of 'result'? result = (10 + 3) * 2 / 'result' का मान क्या होगा? result = (10 + 3) * 2
A
26
B
16
C
13
D
15
26
When can 'else' clause be used with a loop in Python? / पायथन में 'else' क्लॉज का उपयोग लूप के साथ कब किया जा सकता है?
A
When loop breaks
B
When loop completes normally without break
C
When loop starts
D
Never
27
Which mode opens a file for appending in Python? / पायथन में फाइल को अपेंड करने के लिए कौन सा मोड ओपन किया जाता है?
A
r
B
a
C
w
D
x
28
What is the standard way to import NumPy? / न्यूमपाई (NumPy) को इंपोर्ट करने का मानक तरीका क्या है?
A
import numpy
B
import num
C
import np
D
import numpy as np
29
What does the 'ENCLOSING' scope refer to in LEGB rule? / LEGB नियम में 'ENCLOSING' स्कोप का क्या अर्थ है?
A
Global variables
B
Built-in functions
C
Nested function scopes
D
Local variables
30
What is the main purpose of Testing in a program? / प्रोग्राम में टेस्टिंग का मुख्य उद्देश्य क्या है?
A
To write code faster
B
To find errors
C
To document code
D
To optimize speed
31
What is the output of: print(type(10.5))? / print(type(10.5)) का आउटपुट क्या है?
A
<class 'int'>
B
<class 'float'>
C
<class 'str'>
D
<class 'complex'>
32
Which function is used to know the file pointer position in Python? / पायथन में फाइल पॉइंटर की पोजीशन जानने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
A
position()
B
where()
C
tell()
D
locate()
33
Which operator is used for modulus division? / मॉड्यूलस डिवीजन के लिए किस ऑपरेटर का उपयोग किया जाता है?
A
/
B
//
C
%
D
**
34
What must be done to modify a global variable inside a function in Python? / पायथन में फंक्शन के अंदर 'global' वेरिएबल को मॉडिफाई करने के लिए क्या करना होगा?
A
Nothing, it's automatic
B
Use 'global' keyword
C
Use 'nonlocal' keyword
D
Use 'extern' keyword
35
What is the result of: min(5, 2, 8, 1)? / min(5, 2, 8, 1) का परिणाम क्या है?
A
5
B
2
C
8
D
1
36
Which shape is used for Input/Output in a flowchart? / फ्लोचार्ट में इनपुट/आउटपुट के लिए किस आकृति का उपयोग किया जाता है?
A
Rectangle
B
Parallelogram
C
Oval
D
Diamond
37
Which of the following is a valid keyword in Python for exception handling? / निम्नलिखित में से कौन सा पायथन में एक्सेप्शन हैंडलिंग के लिए वैलिड कीवर्ड है?
A
try
B
catch
C
throw
D
finally
38
What does the 'readlines()' function return in Python? / पायथन में 'readlines()' फ़ंक्शन क्या रिटर्न करता है?
A
A single string
B
A list of strings
C
A dictionary
D
An integer
39
What is the output of: [1, 2, 3] * 2? / [1, 2, 3] * 2 का आउटपुट क्या है?
A
[1, 2, 3, 1, 2, 3]
B
[2, 4, 6]
C
Error
D
[1, 2, 3, 2]
40
What is a main advantage of a NumPy array? / न्यूमपाई (NumPy) एरे का एक मुख्य लाभ क्या है?
A
It can store different data types
B
It is faster for numerical operations
C
It uses more memory
D
It cannot be sliced
41
Which of the following is a Bitwise operator? / निम्नलिखित में से कौन सा बिटवाइज ऑपरेटर है?
A
and
B
or
C
&
D
not
42
What is the easiest way to calculate factorial in Python? / पायथन में फैक्टोरियल की गणना करने का सबसे आसान तरीका क्या है?
A
Using loops only
B
Using math.factorial()
C
Using recursion only
D
Using while loop
43
What does the 'capitalize()' function do to a string? / 'capitalize()' फ़ंक्शन स्ट्रिंग पर क्या करता है?
A
Capitalizes the first letter only
B
Capitalizes all letters
C
Capitalizes the first letter of each word
D
Converts to lowercase
44
What is the output of the following code? for i in range(5): if i == 3: break print(i, end=' ') / निम्नलिखित कोड का आउटपुट क्या है? for i in range(5): if i == 3: break print(i, end=' ')
A
0 1 2
B
0 1 2 3
C
0 1 2 3 4
D
0 1 2 4
45
Which of the following creates a Tuple with one element? / निम्नलिखित में से कौन एक एलिमेंट वाला टपल बनाता है?
A
(1)
B
[1]
C
(1,)
D
{1}
46
What does the 'isalpha()' method return? / 'isalpha()' मेथड क्या रिटर्न करता है?
A
True if all characters are alphabets
B
True if all characters are digits
C
True if all characters are alphanumeric
D
True if string is empty
47
What is the output of: print(2 * 3 ** 2)? / print(2 * 3 ** 2) का आउटपुट क्या है?
A
36
B
18
C
12
D
24
48
Which function is used to get the current date and time in Python? / पायथन में करंट डेट और टाइम प्राप्त करने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
A
datetime.now()
B
time.now()
C
date.today()
D
datetime.today()
49
What is a 'module' in Python? / पायथन में 'मॉड्यूल' क्या है?
A
A hardware component
B
A file containing Python code
C
A type of loop
D
An error handler
50
What does the 'strip()' method do? / 'strip()' मेथड क्या करता है?
A
Removes spaces from the left only
B
Removes spaces from the right only
C
Removes spaces from both ends
D
Removes all spaces from the string
51
Which of the following is a valid way to import only the sqrt function from math? / निम्नलिखित में से कौन सा math से केवल sqrt फ़ंक्शन को इंपोर्ट करने का वैलिड तरीका है?
A
import math
B
from math import sqrt
C
import sqrt from math
D
math.sqrt
52
What is the output of: 'Python'.endswith('hon')? / 'Python'.endswith('hon') का आउटपुट क्या है?
A
True
B
False
C
Error
D
None
53
What does the 'assert' statement do in Python? / पायथन में 'assert' स्टेटमेंट क्या करता है?
A
It assigns a value
B
It tests a condition and raises an error if false
C
It creates a loop
D
It defines a function
54
What is the output of: [x**2 for x in range(4)]? / [x**2 for x in range(4)] का आउटपुट क्या है?
A
[0, 1, 4, 9]
B
[1, 4, 9, 16]
C
[0, 1, 2, 3]
D
Error
55
Which method is used to count the frequency of elements in a list using a dictionary? / डिक्शनरी का उपयोग करके लिस्ट में एलिमेंट्स की फ्रीक्वेंसी गिनने के लिए किस मेथड का उपयोग किया जाता है?
A
list.count()
B
Manual loop with dictionary
C
dict.freq()
D
Counter
56
What is the purpose of 'VarArgs' parameters (*args) in a function? / फंक्शन में 'VarArgs' पैरामीटर्स (*args) का क्या उद्देश्य है?
A
To pass keyword arguments
B
To pass a variable number of positional arguments
C
To pass default arguments
D
To pass a single argument
57
What does the 'join()' method do? / 'join()' मेथड क्या करता है?
A
Splits a string
B
Joins list elements into a string
C
Replaces characters
D
Finds substring
58
Which of the following is the correct way to create a 2D NumPy array? / 2D न्यूमपाई एरे बनाने का सही तरीका निम्नलिखित में से कौन सा है?
A
np.array([1, 2, 3, 4])
B
np.array([[1,2],[3,4]])
C
np.array(1,2,3,4)
D
np.2darray([1,2,3,4])
59
What will be the output of the following code? a = [1,2,3]; b = a; b.append(4); print(a) / निम्नलिखित कोड का आउटपुट क्या होगा? a = [1,2,3]; b = a; b.append(4); print(a)
A
[1, 2, 3]
B
[1, 2, 3, 4]
C
Error
D
[4]
60
What does the 'reload()' function do in Python modules? / पायथन मॉड्यूल्स में 'reload()' फ़ंक्शन क्या करता है?
A
Deletes the module
B
Reloads a previously imported module
C
Installs a new module
D
Creates a module
61
Which operator has the lowest precedence in Python? / पायथन में किस ऑपरेटर की प्रीसीडेंस सबसे कम होती है?
A
+
B
*
C
=
D
or
62
What is the output of: print('Hello\nWorld')? / print('Hello\nWorld') का आउटपुट क्या है?
A
Hello World
B
Hello\nWorld
C
Hello (new line) World
D
Hello n World
63
Which of the following is used for pattern matching in Python strings? / पायथन स्ट्रिंग्स में पैटर्न मैचिंग के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
A
re module
B
string module
C
regex module
D
pattern module
64
What is the output of the following code? def func(x=[]): x.append(1); return x; print(func()); print(func()) / निम्नलिखित कोड का आउटपुट क्या है? def func(x=[]): x.append(1); return x; print(func()); print(func())
A
[1] [1]
B
[1] [1, 1]
C
Error
D
[1] []
65
What does the 'lstrip()' method do? / 'lstrip()' मेथड क्या करता है?
A
Removes spaces from the right
B
Removes spaces from the left
C
Removes spaces from both sides
D
Removes all spaces
66
Which mode creates a new file for writing and raises an error if the file exists? / कौन सा मोड राइटिंग के लिए एक नई फाइल बनाता है और यदि फाइल मौजूद है तो एरर देता है?
A
w
B
a
C
x
D
r
67
What is the output of: print(0.1 + 0.2 == 0.3)? / print(0.1 + 0.2 == 0.3) का आउटपुट क्या है?
A
True
B
False
C
Error
D
None
68
What does the 'nonlocal' keyword do? / 'nonlocal' कीवर्ड क्या करता है?
A
Modifies a global variable
B
Modifies a variable in the nearest enclosing scope (excluding global)
C
Creates a local variable
D
Deletes a variable
69
Which of the following is a valid Python dictionary? / निम्नलिखित में से कौन सा वैलिड पायथन डिक्शनरी है?
A
{1,2,3}
B
[1,2,3]
C
{'a':1, 'b':2}
D
(1,2,3)
70
What is the output of: list(range(5, 0, -1))? / list(range(5, 0, -1)) का आउटपुट क्या है?
A
[5, 4, 3, 2, 1]
B
[1, 2, 3, 4, 5]
C
[5, 4, 3, 2, 1, 0]
D
[5, 4, 3, 2]
71
Which attribute of a NumPy array returns the number of dimensions? / न्यूमपाई एरे का कौन सा एट्रिब्यूट डाइमेंशन्स की संख्या रिटर्न करता है?
A
shape
B
size
C
ndim
D
dtype
72
What is the purpose of the 'floor()' function? / 'floor()' फ़ंक्शन का क्या उद्देश्य है?
A
Rounds up
B
Rounds down to the nearest integer
C
Returns the integer part
D
Returns the fractional part
73
Which of the following correctly creates a list of 5 zeros? / निम्नलिखित में से कौन सा 5 शून्यों की लिस्ट सही ढंग से बनाता है?
A
[0] * 5
B
[0 for i in range(5)]
C
Both A and B
D
None of the above
74
What is the output of: print(5 >> 1)? / print(5 >> 1) का आउटपुट क्या है?
A
10
B
2
C
3
D
1
75
What does the 'seek(0)' function do in file handling? / फाइल हैंडलिंग में 'seek(0)' फ़ंक्शन क्या करता है?
A
Moves file pointer to end of file
B
Moves file pointer to beginning of file
C
Deletes the file
D
Closes the file
76
Which of the following is used to find the largest number in an array? / एरे में सबसे बड़ी संख्या ज्ञात करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
A
max()
B
largest()
C
big()
D
maximum()
77
What is the output of: print(3 << 1)? / print(3 << 1) का आउटपुट क्या है?
A
1
B
3
C
6
D
12
78
What does the 'partition()' method do in Python strings? / पायथन स्ट्रिंग्स में 'partition()' मेथड क्या करता है?
A
Splits the string at the first occurrence of a separator
B
Splits at all occurrences
C
Joins strings
D
Replaces substrings
79
Which of the following is a valid Python complex number? / निम्नलिखित में से कौन सी वैलिड पायथन कॉम्प्लेक्स संख्या है?
A
3+2j
B
3+2i
C
(3+2)
D
3j+2
80
What is the purpose of the 'id()' function? / 'id()' फ़ंक्शन का क्या उद्देश्य है?
A
Returns the data type
B
Returns the memory address of an object
C
Returns the length of an object
D
Returns the value of an object
81
Which of the following correctly prints the upper triangular matrix? / निम्नलिखित में से कौन सा अपर ट्राइएंगुलर मैट्रिक्स को सही ढंग से प्रिंट करता है?
A
for i in range(n): for j in range(i, n): print(matrix[i][j])
B
for i in range(n): for j in range(i+1): print(matrix[i][j])
C
for i in range(n): for j in range(n): print(matrix[i][j])
D
for i in range(n): for j in range(n-i): print(matrix[i][j])
82
What does the 'isalnum()' method return? / 'isalnum()' मेथड क्या रिटर्न करता है?
A
True if all characters are alphabets
B
True if all characters are digits
C
True if all characters are alphanumeric (A-Z, a-z, 0-9)
D
True if string has spaces
83
What is the output of: print(not(10 > 5))? / print(not(10 > 5)) का आउटपुट क्या है?
A
True
B
False
C
Error
D
None
84
Which function is used to convert a string to a float? / स्ट्रिंग को फ्लोट में बदलने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
A
int()
B
str()
C
float()
D
decimal()
85
What is the output of the following code? d = {'a':1, 'b':2}; print(d.get('c', 10)) / निम्नलिखित कोड का आउटपुट क्या है? d = {'a':1, 'b':2}; print(d.get('c', 10))
A
KeyError
B
10
C
None
D
0
86
What does the 'pow()' function do? / 'pow()' फ़ंक्शन क्या करता है?
A
Returns the square root
B
Returns the power of a number
C
Returns the remainder
D
Returns the absolute value
87
Which of the following is the correct way to create an identity matrix in NumPy? / न्यूमपाई में आइडेंटिटी मैट्रिक्स बनाने का सही तरीका निम्नलिखित में से कौन सा है?
A
np.eye(3)
B
np.identity(3)
C
Both A and B
D
np.id(3)
88
What is the purpose of the 'docstring' in Python? / पायथन में 'डॉकस्ट्रिंग' का क्या उद्देश्य है?
A
To comment multiple lines
B
To document functions, classes, and modules
C
To define variables
D
To create loops
89
What is the output of: print('python'.find('t'))? / print('python'.find('t')) का आउटपुट क्या है?
A
0
B
1
C
2
D
-1
90
Which of the following is a valid way to reverse a list? / लिस्ट को रिवर्स करने का सही तरीका निम्नलिखित में से कौन सा है?
A
list.reverse()
B
reversed(list)
C
list[::-1]
D
All of the above
91
What does the 'istitle()' method return? / 'istitle()' मेथड क्या रिटर्न करता है?
A
True if string is in uppercase
B
True if string follows title case rules
C
True if string is in lowercase
D
True if string has numbers
92
What is the output of: print(round(3.14159, 2))? / print(round(3.14159, 2)) का आउटपुट क्या है?
A
3.14
B
3.15
C
3.1
D
3.141
93
Which module provides the 'sqrt()' function? / 'sqrt()' फ़ंक्शन किस मॉड्यूल द्वारा प्रदान किया जाता है?
A
sys
B
os
C
math
D
random
94
What is the purpose of the 'swapcase()' method? / 'swapcase()' मेथड का क्या उद्देश्य है?
A
Converts uppercase to lowercase and vice versa
B
Converts to uppercase only
C
Converts to lowercase only
D
Capitalizes the first letter
95
What will be the output of the following code? import numpy as np; arr = np.array([1,2,3,4,5]); print(arr[1:4]) / निम्नलिखित कोड का आउटपुट क्या होगा? import numpy as np; arr = np.array([1,2,3,4,5]); print(arr[1:4])
A
[1,2,3]
B
[2,3,4]
C
[2,3,4,5]
D
[1,2,3,4]
96
What is the purpose of the 'enumerate()' function in Python? / पायथन में 'enumerate()' फ़ंक्शन का क्या उद्देश्य है?
A
It returns the length of a sequence
B
It adds a counter to an iterable and returns it
C
It sorts the elements of a sequence
D
It reverses the sequence
97
Which of the following is used to create a frozen set in Python? / पायथन में फ्रोजन सेट बनाने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
A
set()
B
frozenset()
C
freezeset()
D
constset()
98
What is the output of the following code? print(list(map(lambda x: x**2, [1,2,3,4]))) / निम्नलिखित कोड का आउटपुट क्या है? print(list(map(lambda x: x**2, [1,2,3,4])))
A
[1, 4, 9, 16]
B
[1, 2, 3, 4]
C
[2, 4, 6, 8]
D
[1, 8, 27, 64]
99
Which file handling mode opens a file for both reading and writing without truncating the file? / कौन सा फाइल हैंडलिंग मोड फाइल को बिना ट्रंकेट किए पढ़ने और लिखने दोनों के लिए खोलता है?
A
r+
B
w+
C
a+
D
rb
100
What does the 'np.linspace(0, 1, 5)' function return in NumPy? / न्यूमपाई में 'np.linspace(0, 1, 5)' फ़ंक्शन क्या रिटर्न करता है?
A
[0, 0.25, 0.5, 0.75, 1]
B
[0, 1, 2, 3, 4]
C
[0, 0.2, 0.4, 0.6, 0.8, 1]
D
[0, 1, 0, 1, 0]
📋 Question Navigator
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
Not Answered
ℹ️ Quiz Info
Total Questions:
100
Time Limit:
90 min
Subject:
M3-R5.1
Passing:
60%
Attempt all questions before submitting. You can review your answers using the navigator above.
Answered:
0
/ 100
Submit Quiz