File Handling Text Files

File Handling Text Files

12th Grade - University

7 Qs

quiz-placeholder

Similar activities

Interesting Bird Facts

Interesting Bird Facts

KG - Professional Development

11 Qs

Removal Exam for PM-108

Removal Exam for PM-108

University

10 Qs

Sistem Operasi dan Aplikasi

Sistem Operasi dan Aplikasi

University

10 Qs

IOT Gr12

IOT Gr12

11th - 12th Grade

10 Qs

Gmetrix

Gmetrix

9th - 12th Grade

12 Qs

Grammar Test

Grammar Test

1st Grade - Professional Development

8 Qs

FOOD AND BEVERAGE

FOOD AND BEVERAGE

10th - 12th Grade

10 Qs

Text Information and Media Quiz

Text Information and Media Quiz

12th Grade

10 Qs

File Handling Text Files

File Handling Text Files

Assessment

Quiz

Instructional Technology

12th Grade - University

Hard

Created by

Remya Pillai

Used 20+ 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