
Hinge_2.2_text_file
Quiz
•
Computers
•
12th Grade
•
Practice Problem
•
Hard
George Dong
FREE Resource
Enhance your content in a minute
7 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How to read a text file in Python?
open file for read, then read the content, then close the file
open file for read, then read the content
read the file content, then close the file
open file for WRITE, then Write, then close the file
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
file = open(filename, "r")
what does "r" mean?
file is open for READING, in READING mode
file is open for WRITING, in writing mode
file is open for APPENDING, in append mode
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
file = open(filename, "a")
what does "a" mean?
file is open for READING, in READING mode
file is open for WRITING, in writing mode
file is open for APPENDING, in append mode
4.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Which one is correct to read a file line by line?
file = open(filename, "r")
line = file.readline()
file.close()
file = open(filename, "r")
line = file.readline()
while line != "":
line = file.readline()
file.close()
file = open(filename, "r")
content = file.read()
file.close()
file = open(filename, "r")
content = file.readlines()
file.close()
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the meaning of "\n" in file.write("Diana, Jones\n") in Python?
new line symbol, to create a new line in file
letter n will be written into the file after Jones
characters \ n will be written in the file after Jones
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
file = open(filename, "w")
What is the meaning of "w"?
file object is in "w" mode - writing or write-over mode
file is open for READING mode
file is open for APPENDING mode
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which one is correct for writing "Diana Jones" and "Indiana Jones" into file "names" in 2 separate lines in Python?
file = open("names.txt", "w")
file.write("Diana Jones\n")
file.write("Indiana Jones\n")
file.close()
file = open("names.txt", "r")
file.write("Diana Jones\n")
file.write("Indiana Jones\n")
file.close()
file = open("names.txt", "w")
file.write("Diana Jones")
file.write("Indiana Jones")
file.close()
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Similar Resources on Wayground
10 questions
GADV 02 - Basics
Quiz
•
9th - 12th Grade
10 questions
Bitmap v Vector Images
Quiz
•
KG - University
10 questions
Intro to Photoshop
Quiz
•
9th - 12th Grade
10 questions
Computer
Quiz
•
6th - 12th Grade
10 questions
Hệ Điều Hành Của Máy Tính
Quiz
•
10th Grade - University
11 questions
HTML Unit Quiz
Quiz
•
9th - 12th Grade
10 questions
KTTX Tin 9-HKII
Quiz
•
9th - 12th Grade
10 questions
Prueba Diagnostica de Base de Datos
Quiz
•
9th - 12th Grade
Popular Resources on Wayground
15 questions
Fractions on a Number Line
Quiz
•
3rd Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
22 questions
fractions
Quiz
•
3rd Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
20 questions
Context Clues
Quiz
•
6th Grade
15 questions
Equivalent Fractions
Quiz
•
4th Grade
20 questions
Figurative Language Review
Quiz
•
6th Grade
