File Handling Text Files

File Handling Text Files

12th Grade - University

7 Qs

quiz-placeholder

Similar activities

PHP BASIC

PHP BASIC

University

10 Qs

Sec. 12: Managing File Ownership and Permission

Sec. 12: Managing File Ownership and Permission

University

10 Qs

MIDTERM

MIDTERM

University

10 Qs

Sec. 11: User Accounts and Groups

Sec. 11: User Accounts and Groups

University

10 Qs

Cybersecurity Quiz (NeoCyber Discord)

Cybersecurity Quiz (NeoCyber Discord)

9th Grade - University

12 Qs

Lesson 3- Adding Worksheet Contents

Lesson 3- Adding Worksheet Contents

6th Grade - University

9 Qs

ACP ArrayLists #2

ACP ArrayLists #2

10th - 12th Grade

11 Qs

[Python] Variables, Data Types, and Operators

[Python] Variables, Data Types, and Operators

University

11 Qs

File Handling Text Files

File Handling Text Files

Assessment

Quiz

Instructional Technology

12th Grade - University

Medium

Created by

Remya Pillai

Used 19+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of ‘r’ as prefix in the given statement? f = open(r “d:\color\flower.txt”)

To make it relative string

To make it new string

To make it raw string

To make it reverse string

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A file object is also known as

File handle

File copy

File directory

File link

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To force python to write the contents of file buffer on to storage file,........method may be used.

buffer()

write()

close()

flush()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does strip() function do?

Removes the trailing or leading spaces, if any.

Deletes the file

Remove the file object

Removes all the spaces between words

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which option is correct about this program? f=open(“ss.txt”,”wb”) print(“Name of the file:”,f.name) f.flush() f.close()

Compilation error

Runtime error

No output

Flushes the file when closing them

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to break the link of file object and the file on the disk.

open

close

break

end

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Yashi wants to check whether her name is listed in Shortlisted.dat or not. Which command she can write to open the file:

a=open(“Shortlisted.dat”,”rb”)

with open (“Shortlisted.dat’,’rb”) as a:

None

Both a and b