Q1: What is the result of type(42) in Python?
A) <class 'float'>
B) <class 'int'>
C) <class 'str'>
D) <class 'number'>
ANSWER: C

Q2: What does the len() function return?
A) Size of object
B) Length of object
C) Number of items in object
D) Memory usage
ANSWER: B

Q3: Python is case-sensitive.
A) True
B) False
ANSWER: B

Q4: The print() function outputs text.
A) True
B) False
ANSWER: A

Q5: Which creates a dictionary in Python?
A) []
B) {}
C) ()
D) ""
ANSWER: B

Q6: What is 5 // 2 in Python?
A) 2
B) 2.5
C) 3
D) Error
ANSWER: A