Class - 12 CBSE Computer Science — Assertion Reason Type Questions
Assertion (A): The file in Python is used to store information on a named location in the secondary storage device.
Reasoning (R): In Python, files are classified as program files and data files and as per the file type store the data specific to its use and purpose.
- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
Python Data Handling
1 Like
Answer
Both A and R are true and R is the correct explanation of A.
Explanation
In Python, a file is used to store information on a named location in the secondary storage device. Files can be classified into different types such as program files and data files. Program files contain Python scripts (with .py extension), while data files store specific data relevant to their purpose. This classification helps organize and manage files based on their content and usage.
Answered By
1 Like