tech beamers
  • Python Lab
    • Python Online Compiler
    • Python Code Checker
    • Python Coding Exercises
    • Python Coding Quizzes
  • SQL Practice
  • Selenium Practice
  • SW Guides
tech beamers
Search
  • Python Lab
    • Python Online Compiler
    • Python Code Checker
    • Python Coding Exercises
    • Python Coding Quizzes
  • SQL Practice
  • Selenium Practice
  • SW Guides
Follow US
© TechBeamers. All Rights Reserved.
Python Quizzes

Python File Handling Quiz Part-1

Last updated: Mar 07, 2025 11:14 am
Meenakshi Agarwal
By Meenakshi Agarwal
No Comments
11 months ago
SHARE

Welcome to the Python file handling quiz part-1. In this quiz, we’ve added 15 basic questions that cover topics related to file-handling functions and access modes.

Undoubtedly, files are a key component of almost all applications. But it has been a challenge for programmers to use them in an optimized manner. Because the mishandling of files can pull down the performance of any application miserably.

Check out the Quiz on Python File Handling Basics!

This topic is important for programmers but has the same relevance for automation testers. So, attempt the below Python file handling quiz part-1 and answer each question carefully.

Q-1.  Which of the following command is used to open a file “c:\temp.txt” in read mode only?

A. infile = open(“c:\temp.txt”, “r”)
B. infile = open(“c:\\temp.txt”, “r”)
C. infile = open(file = “c:\temp.txt”, “r+”)
D. infile = open(file = “c:\\temp.txt”, “r+”)

Show Answer

Option – B

Q-2.  Which of the following command is used to open a file “c:\temp.txt” in write mode only?

A. outfile = open(“c:\temp.txt”, “w”)
B. outfile = open(“c:\\temp.txt”, “w”)
C. outfile = open(file = “c:\temp.txt”, “w+”)
D. outfile = open(file = “c:\\temp.txt”, “w+”)

Show Answer

Option – B

Q-3.  Which of the following command is used to open a file “c:\temp.txt” in append-mode?

A. outfile = open(“c:/temp.txt”, “a”)
B. outfile = open(“c:\\temp.txt”, “rw”)
C. outfile = open(“c:\temp.txt”, “w+”)
D. outfile = open(“c:\\temp.txt”, “r+”)
E. outfile = open(“c:\\temp.txt”, “a”)

Show Answer

Option – A and E

Q-4.  Which of the following statements are true regarding the opening modes of a file?

A. When you open a file for reading, if the file does not exist, an error occurs.
B. When you open a file for writing, if the file does not exist, an error occurs.
C. When you open a file for reading, if the file does not exist, the program will open an empty file.
D. When you open a file for writing, if the file does not exist, a new file is created.
E. When you open a file for writing, if the file exists, the existing file is overwritten with the new file.

Show Answer

Option – A, D, and, E

Q-5. Which of the following commands can be used to read the “n” number of characters from a file using the file object <file>?

A. file.read(n)
B. n = file.read()
C. file.readline(n)
D. file.readlines()

Show Answer

Option – A

Q-6. Which of the following commands can be used to read the entire contents of a file as a string using the file object <tmpfile>?

A. tmpfile.read(n)
B. tmpfile.read()
C. tmpfile.readline()
D. tmpfile.readlines()

Show Answer

Option – B

Q-7. Which of the following commands can be used to read the next line in a file using the file object <tmpfile>?

A. tmpfile.read(n)
B. tmpfile.read()
C. tmpfile.readline()
D. tmpfile.readlines()

Show Answer

Option – C

Q-8. Which of the following commands can be used to read the remaining lines in a file using the file object <tmpfile>?

A. tmpfile.read(n)
B. tmpfile.read()
C. tmpfile.readline()
D. tmpfile.readlines()

Show Answer

Option – D

Q-9. What does the <readlines()> method return?

A. str
B. a list of lines
C. list of single characters
D. a list of integers

Show Answer

Option – B

Q-10. Which of the following functions can be used to check if a file “logo” exists?

A. os.path.isFile(logo)
B. os.path.exists(logo)
C. os.path.isfile(logo)
D. os.isFile(logo)

Show Answer

Option – C

Q-11. Which of the following functions displays a file dialog for opening an existing file?

A. tmpfile = askopenfilename()
B. tmpfile = asksaveasfilename()
C. tmpfile = openfilename()
D. tmpfile = saveasfilename()

Show Answer

Option – A

Q-12. Which of the following functions displays a file dialog for saving a file?

A. tmpfile = askopenfilename()
B. tmpfile = openfilename()
C. tmpfile = asksaveasfilename()
D. tmpfile = saveasfilename()

Show Answer

Option – C

Q-13. Which of the following command is used to open a file “c:\temp.txt” for writing in binary format only?

A. outfile = open(“c:\temp.txt”, “w”)
B. outfile = open(“c:\\temp.txt”, “wb”)
C. outfile = open(“c:\temp.txt”, “w+”)
D. outfile = open(“c:\\temp.txt”, “wb+”)

Show Answer

Option – B

Q-14. Which of the following command is used to open a file “c:\temp.txt” for reading in binary format only?

A. outfile = open(“c:\temp.txt”, “r”)
B. outfile = open(“c:\\temp.txt”, “rb”)
C. outfile = open(“c:\temp.txt”, “r+”)
D. outfile = open(“c:\\temp.txt”, “rb+”)

Show Answer

Option – B

Q-15. Which of the following functions do you use to write data in binary format?

A. write
B. output
C. dump
D. send

Show Answer

Option – C

Your Experience with this Python File Handling Quiz?

We hope that you enjoyed going through the above Python file handling quiz part-1. Though, you could have felt the questions were a bit basic but would have reminded you of the core file-handling principles in Python.

Quick Suggestions

  • Basics of Python File Handling
  • Read-Write File I/O in Python
  • File Handling in Python Quiz Part II
  • Beginners quiz on Python functions
  • Linux Basic Questions and Answers

TechBeamers will be providing new quizzes and tutorials in the near future. In the meantime, please keep reading, learning, and subscribe to our YouTube channel.

Thank You.

TAGGED:programmingpython file handling
Share This Article
Whatsapp Whatsapp LinkedIn Reddit Copy Link
Meenakshi Agarwal Avatar
ByMeenakshi Agarwal
Follow:
I’m Meenakshi Agarwal, founder of TechBeamers.com and ex-Tech Lead at Aricent (10+ years). I built the Python online compiler, code checker, Selenium labs, SQL quizzes, and tutorials to help students and working professionals.
Previous Article Python string functions and examples Python String Handling Quiz Part-2
Next Article Python file handling quiz part-2 for Experienced Programmers Python File Handling Quiz Part-2
Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Most Popular This Month

  • → Python Online Compiler
  • → Python Code Checker
  • → Free Python Tutorial
  • → SQL Practice Queries
  • → Code to Flowchart Tool
  • → Python Syntax Guide
  • → Python List & Dict Questions
  • → Selenium Practice Test Page

RELATED TUTORIALS

Python DSA Quiz - Part 1 | Core Data Structures & Algorithms MCQ

Python DSA Quiz – Part 1 | Core Data Structures & Algorithms MCQ

By Meenakshi Agarwal
3 weeks ago
Python DSA Quiz – Part 4 | Trees & Binary Search Tree (BST) MCQ

Python DSA Quiz – Part 4 | Trees & Binary Search Tree (BST) MCQ

By Meenakshi Agarwal
2 months ago
Python Functions Quiz Part-1 for Beginner Programmers

Python Functions Quiz Part-1

By Meenakshi Agarwal
11 months ago

Python DSA Quiz – Part 2 | Recursion & Sorting Algorithms MCQ

By Meenakshi Agarwal
3 weeks ago
© TechBeamers. All Rights Reserved.
  • About
  • Contact
  • Disclaimer
  • Privacy Policy
  • Terms of Use