EXPERIENCES IN PLANNING LEARNING PART
1 | COMPLETE ANSWERED 5-HOUR
CLASSROOM REFLECTION | 2026 UPDATE.
,Ques on 1
Which statement best describes Python?
A. A markup language
B. A high-level general-purpose programming language
C. A database management system
D. An opera ng system
Answer: B
Ra onale: Python is a high-level, general-purpose programming language used for automa on,
web development, data analysis, scrip ng, and many other applica ons.
Ques on 2
Which func on displays output on the screen?
A. show()
B. display()
C. print()
D. output()
Answer: C
Ra onale: Python's built-in print() func on sends values or text to standard output.
Ques on 3
Which symbol begins a single-line comment in Python?
A. //
B. #
C. /*
D. --
Answer: B
Ra onale: Python uses the hash symbol (#) to begin a single-line comment. Text a er the symbol
is ignored by the interpreter.
,Ques on 4
Which is a valid Python variable name?
A. 2value
B. my-value
C. my_value
D. class
Answer: C
Ra onale: Python iden fiers may contain le ers, digits, and underscores but cannot begin with
a digit, contain a hyphen, or use reserved keywords.
Ques on 5
What is the output?
x=5
y=7
print(x + y)
A. 12
B. 57
C. 35
D. Error
Answer: A
Ra onale: Both variables contain integers, so + performs numeric addi on: 5 + 7 = 12.
Ques on 6
What data type is 42?
A. str
B. float
C. int
D. bool
, Answer: C
Ra onale: Whole-number values without decimal points are represented by Python's int type.
Ques on 7
What data type is 42.0?
A. int
B. float
C. str
D. bool
Answer: B
Ra onale: A numeric value containing a decimal point is normally represented as a floa ng-
point (float) value.
Ques on 8
Which value is a Boolean?
A. "False"
B. 0
C. False
D. "0"
Answer: C
Ra onale: True and False are Python Boolean literals. Values enclosed in quota on marks are
strings.
Ques on 9
What does type() do?
A. Converts a value to a string
B. Determines the type of an object
C. Deletes a variable
D. Creates a func on