File Handling Text Files

File Handling Text Files

12th Grade - University

7 Qs

quiz-placeholder

Similar activities

tik ok

tik ok

University

10 Qs

MET 5: Media and Information Sources

MET 5: Media and Information Sources

12th Grade

10 Qs

Kuis instructional technology

Kuis instructional technology

12th Grade

10 Qs

Quiz 5 Digital Design

Quiz 5 Digital Design

KG - Professional Development

10 Qs

TIK LATIHAN 1

TIK LATIHAN 1

12th Grade

10 Qs

Introduction to AutoLISP

Introduction to AutoLISP

12th Grade

10 Qs

Premiere Pro Video Project Organization

Premiere Pro Video Project Organization

9th - 12th Grade

10 Qs

Quiz No. 2

Quiz No. 2

University

10 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