Hinge_2.2_text_file

Hinge_2.2_text_file

12th Grade

7 Qs

quiz-placeholder

Similar activities

What is a program slides(6:16)

What is a program slides(6:16)

8th - 12th Grade

10 Qs

Jenis web hosting

Jenis web hosting

12th Grade

10 Qs

Windows 10 Installation

Windows 10 Installation

11th - 12th Grade

12 Qs

Microsoft  Office Word

Microsoft Office Word

4th Grade - University

12 Qs

Soal Ujian Komputer

Soal Ujian Komputer

10th - 12th Grade

10 Qs

Simdig

Simdig

12th Grade - University

10 Qs

python quiz

python quiz

6th Grade - Professional Development

10 Qs

Scratch

Scratch

KG - Professional Development

10 Qs

Hinge_2.2_text_file

Hinge_2.2_text_file

Assessment

Quiz

Computers

12th Grade

Practice Problem

Hard

Created by

George Dong

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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