Search Header Logo

Python files and exceptions

Authored by turgut kalfaoglu

Computers

11th Grade

Used 4+ times

Python files and exceptions
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

17 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output-

f=open('abc.txt','a')

text="xyz"

f.write(text)

f.close()

Writing into the file without erasing old content

Writing into the file by erasing old content

reading from the file without erasing old content

reading from the file by erasing old content

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Mode in the following program to open file for writing in a mode where new data will be added at the end of old data

file =open("poem.txt","__")

r

w

a

r+

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose the correct statement to close a file stream named myfile:

myfile.terminate()

myfile.end()

myfile.close()

myfile.remove()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function read single line at a time?

read()

read(n)

readline()

readlines()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Where files are store permanently?

RAM

Hard Disk

Cache memory

None of these

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Appending to a file means adding extra data into the file.

True
False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Q.2 Which of the following statements are not true regarding the opening modes of a file?

When you open a file for reading, if the file does not exist, an error occurs.

When you open a file for writing, if the file does not exist, an error occurs

When you open a file for writing, if the file does not exist, a new file is created.

When you open a file for writing, if the file exists, the existing file is overwritten with the new file.

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?