0% found this document useful (0 votes)
7 views2 pages

Class 9 Python Questions Answers Till Chapter 4

The document contains questions and answers related to Python programming for Class 9, covering topics from algorithms and flowcharts to lists and tuples. Key concepts include definitions of algorithms, flowcharts, Python language, variables, data types, and the characteristics of lists and tuples. It also mentions tools for writing Python programs and the modes of IDLE.

Uploaded by

kvsnmh25
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

Class 9 Python Questions Answers Till Chapter 4

The document contains questions and answers related to Python programming for Class 9, covering topics from algorithms and flowcharts to lists and tuples. Key concepts include definitions of algorithms, flowcharts, Python language, variables, data types, and the characteristics of lists and tuples. It also mentions tools for writing Python programs and the modes of IDLE.

Uploaded by

kvsnmh25
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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.

You might also like