Practise Questions (File Handling and Paths) (Q1-10)

Duration: 4 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 practice questions. The instructor begins by explaining the difference between absolute and relative file paths, using the example of "/home/user/file.txt" as an absolute path. The lesson then progresses to file opening modes, defining 'r' for reading, 'w' for writing (which creates or overwrites), 'a' for appending, and 'r+' for reading and writing. The instructor demonstrates that opening a file in 'r' mode will result in an error if the file does not exist. The final part of the video covers the 'close()' function for closing a file and the advantage of using the 'with' statement, which automatically closes the file, preventing errors from forgotten close calls. The presentation is structured as a multiple-choice quiz, with the instructor writing on a digital screen to highlight the correct answers.

Chapters

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

    The video starts with a slide titled "Practice Questions - File Handling & Paths". The first question asks, "Which of the following is an absolute path?" with options A. data/file.txt, B. ../file.txt, C. /home/user/file.txt, and D. file.txt. The instructor explains that an absolute path starts from the root directory, which is indicated by a forward slash at the beginning. He points to option C, "/home/user/file.txt", as the correct answer, stating it is an absolute path because it begins with "/". The second question asks, "Which path depends on the current working directory?" with options A. Absolute path, B. Relative path, C. Root path, and D. Network path. The instructor explains that a relative path is dependent on the current working directory and points to option B as the correct answer.

  2. 2:00 4:24 02:00-04:24

    The instructor moves to the next question, number 3: "Which mode opens a file for reading and writing without deleting content?" The options are A. w+, B. r+, C. a+, and D. r. The instructor explains that the 'r+' mode allows for both reading and writing without deleting the existing content, and he circles option B as the correct answer. Question 4 asks, "What happens if a file does not exist and is opened in r mode?" The options are A. File is created, B. File is opened, C. Error occurs, and D. Data is appended. The instructor explains that since 'r' mode is for reading only, if the file doesn't exist, an error will occur, so C is the correct answer. Question 5 asks, "Which mode creates a new file or overwrites existing file?" The options are A. r, B. a, C. w+, and D. r+. The instructor explains that the 'w' mode (or 'w+') creates a new file or overwrites an existing one, and he circles option C. Question 6 presents a code snippet: f = open("test.txt", "w"); f.write("Python"); f.close(). The question is, "What happens to previous content?" The options are A. Appended, B. Deleted, C. Modified. The instructor explains that the 'w' mode overwrites the file, so the previous content is deleted, making B the correct answer. Question 7 asks, "Which mode appends data at the end of file?" The options are A. w, B. r+, C. a, and D. w+. The instructor explains that the 'a' mode appends data, so C is correct. Question 8 shows code: f = open("a.txt", "a"); f.write("Hello"). The question is, "Where will 'Hello' be written?" The options are A. Beginning, B. Middle, C. End, D. Random position. The instructor explains that 'a' mode appends to the end, so C is correct. Question 9 asks, "Which function closes a file?" The options are A. end(), B. stop(), C. close(), D. exit(). The instructor circles 'close()' as the correct function. Question 10 asks, "Advantage of using with statement is:" The options are A. Faster execution, B. File closes automatically, C. File opens twice, D. Prevents overwrite. The instructor explains that the 'with' statement automatically closes the file, so B is the correct answer.

The video provides a comprehensive, question-based review of Python file handling. It systematically covers the fundamental concepts of file paths, starting with the distinction between absolute and relative paths. The core of the lesson focuses on file opening modes, clearly explaining the behavior of 'r', 'w', 'a', and 'r+' modes, including their effects on file content and error handling. The instructor uses a digital whiteboard to visually reinforce the correct answers. The lesson concludes by highlighting the importance of the 'close()' function and the significant advantage of the 'with' statement for automatic file closure, which is a best practice in Python programming.