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 — Operators, Expressions & Python Statements MCQ
25 Questions • M3-R5.1
20:00
← Back
1
The ** operator in Python performs?
A
Multiplication
B
Division
C
Exponentiation (power)
D
Modulus
2
The // operator in Python performs?
A
Regular division
B
Floor division (integer result)
C
Modulus
D
Bitwise AND
3
7 % 3 in Python returns?
A
2
B
1
C
3
D
0
4
Which is a comparison operator in Python?
A
=
B
==
C
:=
D
=>
5
The "not" operator in Python is a?
A
Arithmetic operator
B
Logical operator
C
Comparison operator
D
Assignment operator
6
What does "and" operator return?
A
Always True
B
True if both operands are True
C
Always False
D
True if any one is True
7
x += 5 is equivalent to?
A
x = x - 5
B
x = x * 5
C
x = x + 5
D
x = 5
8
type(3.14) in Python returns?
A
<class 'int'>
B
<class 'double'>
C
<class 'float'>
D
<class 'str'>
9
Which operator checks if values are identical objects?
A
==
B
!=
C
is
D
in
10
bool(0) returns?
A
True
B
0
C
None
D
False
11
5 // 2 in Python returns?
A
2.5
B
2
C
3
D
1
12
5 % 2 in Python returns?
A
2
B
1
C
2.5
D
0
13
2 ** 3 in Python returns?
A
6
B
8
C
5
D
9
14
Which is a comparison operator?
A
=
B
==
C
+=
D
:=
15
!= means?
A
Equals
B
Not equal to
C
Greater than
D
Less than
16
and operator returns True when?
A
One condition is True
B
Both conditions are True
C
No condition is True
D
Always
17
or operator returns True when?
A
Both False
B
At least one condition is True
C
Never
D
Both True only
18
not operator?
A
Adds values
B
Reverses boolean value
C
Multiplies
D
Divides
19
Assignment operator in Python is?
A
==
B
=
C
:=
D
!=
20
+= is called?
A
Comparison
B
Augmented/compound assignment
C
Logical
D
Bitwise
21
int("10") returns?
A
"10"
B
10
C
10.0
D
Error
22
float("3.14") returns?
A
3
B
3.14
C
"3.14"
D
Error
23
str(100) returns?
A
100
B
"100"
C
100.0
D
Error
24
Ternary operator in Python syntax is?
A
a if condition else b
B
condition ? a : b
C
if condition then a
D
a when condition
25
is operator checks?
A
Value equality
B
Identity (same object in memory)
C
Type
D
Length
📋 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
Answered
Not Answered
ℹ️ Quiz Info
Total Questions:
25
Time Limit:
20 min
Subject:
M3-R5.1
Passing:
60%
Attempt all questions before submitting. You can review your answers using the navigator above.
Answered:
0
/ 25
Submit Quiz