File Handling with Python

File Handling with Python

12th Grade - University

7 Qs

quiz-placeholder

Similar activities

DATA FILE HANDLING

DATA FILE HANDLING

12th Grade

10 Qs

PYTHON QUIZ2

PYTHON QUIZ2

University - Professional Development

10 Qs

File Handling in Python

File Handling in Python

11th - 12th Grade

10 Qs

Python Files I/O

Python Files I/O

6th - 12th Grade

8 Qs

Pandas - CSV file

Pandas - CSV file

12th Grade

10 Qs

XII Practical Exam

XII Practical Exam

12th Grade

12 Qs

PYTHON FILES

PYTHON FILES

9th - 12th Grade

8 Qs

G12 File Handling

G12 File Handling

12th Grade

11 Qs

File Handling with Python

File Handling with Python

Assessment

Quiz

Computers

12th Grade - University

Hard

Created by

Prayrita Anand

Used 93+ times

FREE Resource

7 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

5 sec • 1 pt

1.The default file - open mode is ________ mode.

2.

FILL IN THE BLANK QUESTION

10 sec • 1 pt

The other name for file object is ________.

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

2. A ________ governs the type of operations(eg read/write/append) possible in the opened file.The two types of data files can be ________ files and ________ files.

FILEMODE,EXCEL,WORD

File Mode,read,write

Data,Text,record

File mode,Text,Data

4.

FILL IN THE BLANK QUESTION

5 sec • 1 pt

To close an open file,________ method is used

5.

FILL IN THE BLANK QUESTION

10 sec • 1 pt

.7. To read all the file contents in form of a list ,________ method is used.

6.

FILL IN THE BLANK QUESTION

10 sec • 1 pt

o write a list in a file, ________ method may be used.

7.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

.7. To read all the file contents in form of a string ,________ method is used.

read()

readline()

readlines()

none of these