Python Basic files

Python Basic files

10th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Wrażenia globlne w Linxie

Wrażenia globlne w Linxie

10th Grade - University

10 Qs

Coding and Logic (Mitchell)

Coding and Logic (Mitchell)

KG - Professional Development

10 Qs

File Management (IGCSE)

File Management (IGCSE)

9th - 10th Grade

13 Qs

Cybersecurity Fundamentals Week 4 Quiz

Cybersecurity Fundamentals Week 4 Quiz

KG - University

10 Qs

Python files

Python files

9th - 11th Grade

7 Qs

Basic Linux Commands Part 1

Basic Linux Commands Part 1

9th - 12th Grade

12 Qs

Simple Encryption

Simple Encryption

10th Grade

15 Qs

Command Line

Command Line

12th Grade - Professional Development

9 Qs

Python Basic files

Python Basic files

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

James Abela

Used 216+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

This command will open MyFile = open("MyText.txt")

To read the file

To append to the file

To write to the file

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

If I want to add to the end of a text file, I should:

MyCipher = open("MyCipher.txt", "w")

MyCipher = open("MyCipher.txt", "a")

MyCipher = open("MyCipher.txt", "w+")

MyCipher = open("MyCipher.txt", "s")

3.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Which of these will generate an error?

MyCipher.write("writing")

MyCipher..write(writing)

MyCipher.write("writing",writing)

MyCipher.readline()

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How do you close the file?

MyFile = close()

MyFile.close

close = MyFile()

MyFile.close()

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Why is it best to open a file with with in Python?

It automatically closes the file

Easier to read the code

Better for binary files

Closers to the pseudocode

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which is the best type of loop to write a file in?

While loop

for loop

repeat loop

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What command can you use to separate parts of a line?

separate()

split()

divide()

cut()

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?