Hinge_2.2_text_file

Hinge_2.2_text_file

12th Grade

7 Qs

quiz-placeholder

Similar activities

Introduction to Excel

Introduction to Excel

KG - Professional Development

10 Qs

Packet Switching and Encryption

Packet Switching and Encryption

10th - 12th Grade

11 Qs

Arduino - Contador

Arduino - Contador

9th Grade - University

11 Qs

QUIZ DE TECNOLOGÍA E INFORMÁTICA CICLO V (periodo 3)

QUIZ DE TECNOLOGÍA E INFORMÁTICA CICLO V (periodo 3)

1st - 12th Grade

10 Qs

Pembuatan Video

Pembuatan Video

6th Grade - University

10 Qs

12 CA One Mark 1 & 2

12 CA One Mark 1 & 2

12th Grade

10 Qs

Pre Test Awal Informatika

Pre Test Awal Informatika

9th - 12th Grade

10 Qs

website design elements

website design elements

12th Grade

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

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?