
Understanding Files in Python

Quiz
•
Mathematics
•
University
•
Medium
Van Khanh
Used 1+ times
FREE Resource
102 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you open a file for reading in Python?
open('file.txt', 'r')
open('file.txt', 'write')
open('file.txt', 'append')
open('file.txt', 'create')
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which mode is used to open a file for writing, overwriting the file if it already exists?
'r'
'a'
'w'
'x'
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you close a file after opening it?
file.close()
file.end()
file.stop()
file.quit()
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What method is used to read the entire contents of a file?
file.read()
file.readall()
file.get()
file.readfile()
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which method reads a single line from a file?
file.readline()
file.getline()
file.readline()
file.nextline()
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you write data to a file?
file.write(data)
file.append(data)
file.insert(data)
file.add(data)
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which mode is used to open a file for appending data to the end?
'r'
'w'
'a'
'x'
Create a free account and access millions of resources
Similar Resources on Wayground
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade