
Hinge_2.2_text_file

Quiz
•
Computers
•
12th Grade
•
Hard

George Dong
FREE Resource
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()
Similar Resources on Wayground
10 questions
G10 CS File Handling

Quiz
•
12th Grade
10 questions
การออกแบบหน้าประวัติส่วนตัว Portfolio

Quiz
•
9th - 12th Grade
7 questions
File Handling with Python

Quiz
•
12th Grade - University
10 questions
Python Basic files

Quiz
•
10th - 12th Grade
10 questions
The Windows Command Line Interface

Quiz
•
11th - 12th Grade
10 questions
File Handling

Quiz
•
12th Grade
10 questions
MOAC Excel 2016 Lesson 03

Quiz
•
8th - 12th Grade
10 questions
Giới Thiệu Microsoft Access

Quiz
•
12th Grade
Popular Resources on Wayground
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
10 questions
Ice Breaker Trivia: Food from Around the World

Quiz
•
3rd - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
20 questions
ELA Advisory Review

Quiz
•
7th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Multiplication and Division Unknowns

Quiz
•
3rd Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade