File Handling Text Files

File Handling Text Files

12th Grade - University

7 Qs

quiz-placeholder

Similar activities

Lesson 2- Formatting  Documents with Themes and Styles

Lesson 2- Formatting Documents with Themes and Styles

6th Grade - University

9 Qs

tik ok

tik ok

University

10 Qs

How much do you know about google docs?

How much do you know about google docs?

9th - 12th Grade

10 Qs

Jetking Quiz

Jetking Quiz

University

6 Qs

Sec. 7: Searching and Extracting Data from Files and Archiving

Sec. 7: Searching and Extracting Data from Files and Archiving

University

10 Qs

Abstract Classes & Collections v2.0

Abstract Classes & Collections v2.0

University

10 Qs

CIT In-Person Training Quiz

CIT In-Person Training Quiz

University

11 Qs

Word Processing Basics

Word Processing Basics

University

7 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