Class 11 Computer Science: Python Programming Fundamentals
Answer the questions and tap Submit to see your score. Your progress is auto-saved on this device.
Jump to question
Q1 · MCQ · 1 mark
Which of the following data types is immutable in Python?
Q2 · MCQ · 1 mark
What is the output of the expression `5 + 3 * 2` in Python?
Q3 · FILL · 1 mark
In Python, comments begin with the ____ symbol.
Q4 · MCQ · 1 mark
Which operator is used for exponentiation in Python?
Q5 · SHORT · 2 marks
What is the purpose of the `print()` function in Python?
Q6 · MCQ · 1 mark
What will be the value of `x` after `x = 10` followed by `x += 5`?
Q7 · FILL · 1 mark
A variable in Python must start with a letter or an ____.
Q8 · MCQ · 1 mark
Which of the following is a valid identifier in Python?
Q9 · FILL · 1 mark
The logical operator for OR in Python is ____.
Q10 · SHORT · 2 marks
Differentiate between a 'list' and a 'tuple' in Python.