Practise Questions (File Handling and Paths) (Q21-30)

Duration: 6 min

This video lesson is available to enrolled students.

Enroll to watch — DSSSB TGT Computer Science 2026 Section B

AI Summary

An AI-generated summary of this video lecture.

This video is a lecture on Python file handling, presented as a series of multiple-choice questions. The instructor explains the behavior of different file modes, such as 'r+', 'w+', and 'a+', by analyzing code snippets. For instance, in question 21, the instructor explains that writing in 'r+' mode starts from the beginning of the file. In question 22, the code `f = open("t.txt","a+")` followed by `f.write("X")` and `f.seek(0); print(f.read())` is analyzed, and the instructor explains that the output will be 'X' because the file pointer is moved to the beginning after writing. The lecture also covers the correct mode for reading, writing, and appending, which is 'a+', and the safest way to handle files, which is using the 'with' statement. The instructor uses a digital whiteboard to draw diagrams and highlight key parts of the code and questions.

Chapters

  1. 0:00 2:00 00:00-02:00

    The video begins with a question about file handling in Python. Question 21 asks where writing starts when using the 'r+' mode. The code snippet shows `f = open("t.txt","r+")` and `f.write("Hi")`. The instructor explains that in 'r+' mode, the file pointer starts at the beginning of the file, so writing begins from the beginning. The options are A. End of file, B. Beginning, C. Random, D. After newline. The instructor confirms the correct answer is B. Beginning. The instructor then moves to question 22, which presents a code snippet: `f = open("t.txt","a+")`, `f.write("X")`, `f.seek(0); print(f.read())`. The question asks what happens. The instructor begins to analyze this code, explaining that 'a+' mode opens the file for both reading and writing, and the file pointer is initially at the end of the file.

  2. 2:00 5:00 02:00-05:00

    The instructor continues to analyze question 22. He explains that when the file is opened in 'a+' mode, the file pointer is at the end of the file. When `f.write("X")` is executed, the 'X' is appended to the end of the file, and the file pointer remains at the end. Then, `f.seek(0)` moves the file pointer to the beginning of the file. Finally, `f.read()` reads the entire file content from the beginning, which includes the 'X' that was just written. Therefore, the output will be 'X'. The instructor draws a diagram on the screen to illustrate the file pointer's movement. The options are A. Only X printed, B. Old + X printed, C. Error, D. Empty output. The instructor confirms the correct answer is A. Only X printed. He then moves to question 23, which asks which mode allows reading, writing, and appending. The options are A. r+, B. w+, C. a+. The instructor explains that 'a+' is the correct mode because it allows all three operations: reading, writing, and appending. He then moves to question 24, which presents the code `f = open("t.txt","w+"); print(f.read())`. The question asks for the output. The instructor explains that 'w+' mode opens the file for both reading and writing, but it truncates the file to zero length, meaning the file is cleared. Therefore, when `f.read()` is called, there is no content to read, and the output will be an empty string. The options are A. File content, B. Empty, C. Error, D. Garbage. The instructor confirms the correct answer is B. Empty.

  3. 5:00 5:47 05:00-05:47

    The instructor moves to question 25, which asks which operation is used for data manipulation in a text file. The options are A. Overwriting, B. Appending, C. Read -> modify -> write, D. Renaming. The instructor explains that the correct answer is C, as it describes the process of reading the data, modifying it in memory, and then writing it back to the file. He then moves to question 26, which presents the code `f = open("t.txt","r"); data = f.read(); f.close(); data = data.upper()`. The question asks what happened. The instructor explains that the file was opened in read mode, the data was read into a variable, and then the data was modified in memory by converting it to uppercase. However, the file on the disk was not changed because the modified data was not written back. Therefore, the answer is B. Data modified in memory. He then moves to question 27, which asks how to permanently change the file content after manipulation. The options are A. Print data, B. Use seek, C. Rewrite file, D. Use readline. The instructor explains that to permanently change the file, you must rewrite the file. He then moves to question 28, which asks which function is used to move the file pointer backward. The options are A. tell(), B. move(), C. seek(), D. rewind(). The instructor explains that the correct answer is C. seek(), as it is used to move the file pointer to a specific position. He then moves to question 29, which asks what the relative path "../data.txt" means. The options are A. Same folder, B. Root folder, C. Parent directory, D. Child directory. The instructor explains that ".." refers to the parent directory, so the correct answer is C. Parent directory. Finally, he moves to question 30, which asks which is the safest way to handle files. The options are A. open + close, B. try-except, C. with statement, D. manual handling. The instructor explains that the 'with' statement is the safest way because it automatically handles closing the file, even if an error occurs.

The video provides a comprehensive review of Python file handling concepts through a series of multiple-choice questions. The instructor systematically explains the nuances of different file modes ('r+', 'w+', 'a+') and their effects on file pointers and content. Key concepts demonstrated include the starting position of the file pointer in 'r+' mode, the behavior of 'a+' mode when writing and reading, and the importance of the 'with' statement for safe file handling. The lecture effectively uses code snippets and visual diagrams to illustrate the flow of data and the movement of the file pointer, making complex concepts accessible to students preparing for exams.