Class 9 – Python Questions & Answers (Till
Chapter 4)
Chapter 1: Algorithms & Flowcharts
Q1. What is an algorithm?
Ans: An algorithm is a step-by-step method used to solve a problem.
Q2. What is a flowchart?
Ans: A flowchart is a diagrammatic representation of an algorithm.
Q3. Name any two flowchart symbols.
Ans: Oval (Start/Stop) and Rectangle (Process).
Chapter 2: Introduction to Python
Q4. What is Python?
Ans: Python is a high-level, easy-to-learn programming language.
Q5. What is the use of print() function?
Ans: print() is used to display output on the screen.
Q6. What is a variable?
Ans: A variable is used to store data values.
Q7. Name any three data types in Python.
Ans: int, float, str.
Chapter 3: Tools
Q8. Name any two tools used to write Python programs.
Ans: IDLE and Jupyter Notebook.
Q9. What are the two modes of IDLE?
Ans: Interactive Mode and Script Mode.
Chapter 4: Lists and Tuples
Q10. What is a list?
Ans: A list is a collection of items written using square brackets [ ].
Q11. What do you mean by mutable?
Ans: Mutable means the value can be changed.
Q12. Name any two list functions.
Ans: append() and remove().
Q13. What is a tuple?
Ans: A tuple is a collection of items written using round brackets ( ).
Q14. Are tuples mutable or immutable?
Ans: Tuples are immutable.
Q15. From which index does list indexing start?
Ans: List indexing starts from 0.