Hinge_2.2_text_file

Hinge_2.2_text_file

12th Grade

7 Qs

quiz-placeholder

Similar activities

G10 CS File Handling

G10 CS File Handling

12th Grade

10 Qs

powerpoint

powerpoint

12th Grade

10 Qs

FILE HANDLING IN PYTHON

FILE HANDLING IN PYTHON

12th Grade

10 Qs

Python Basic files

Python Basic files

10th - 12th Grade

10 Qs

The Windows Command Line Interface

The Windows Command Line Interface

11th - 12th Grade

10 Qs

File Handling

File Handling

12th Grade

10 Qs

MOAC Excel 2016 Lesson 03

MOAC Excel 2016 Lesson 03

8th - 12th Grade

10 Qs

Giới Thiệu Microsoft Access

Giới Thiệu Microsoft Access

12th Grade

10 Qs

Hinge_2.2_text_file

Hinge_2.2_text_file

Assessment

Quiz

Computers

12th Grade

Hard

Created by

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()

Discover more resources for Computers