File Handling Question Bank - MCQs
File Handling Question Bank - MCQs
Q7. Assume that you are writing in a text file; now you want Knowledge
to identify where the cursor is currently at in the
file. Which function will you use for the same?
(A) seek()
(B) hide()
(C) tell()
(D) type()
Q8. Consider the statements given below: Evaluation
Fileobj = open(“Report.txt”, ‘r’)
Fileobj.seek(25,0)
Choose the statement that best explains the second
statement.
(A) It will place the pointer at 25 bytes ahead of the
current file pointer position.
(B) It will place the pointer at 25 bytes behind from the
end-of file.
(C) It will place the pointer at 25 bytes from the
beginning of the file.
(D) It returns 25 characters from the 0th index.
Q9. To read 4th line from text file, which of the following Knowledge
statement is true?
(A) dt = f.readlines();print(dt[3])
(B) dt=f.read(4) ;print(dt[3])
(C) dt=f.readline(4);print(dt[3])
(D) All of these
(A) 10
(B) 8
(C) 9
(D) 20
(A) write()
(B) writecharacters()
(C) writeall()
(D) writechar()
(A) No difference.
(B) In r+ mode, the pointer is initially placed at the
beginning of the file and for w+, the pointer is placed at
the end.
(C) In w+ mode, the pointer is initially placed at the
beginning of the file and for r+, the pointer is placed at
the end.
(D) Depends on the operating system.
Q21 Which of the following not a valid file extension for file
student?
A. student.txt
B. student.cvc
C. student.dat
D. student.pdf
Q25 Which file can open in any text editor and is in human
readable form?
A. Binary files
B. Text files
C. Data files
D. d. Video files
Q30 Trying to open a binary file using a text editor will show:
A. Garbage values
B. ASCII values
C. Binary character
D. Unicodes
Q31 Choose the correct syntax to open a file in write mode. KNOWLEDGE AND
(A) f.open(“file.txt”,’w’) UNDERSTANDING
(B) f = open(“file.txt”)
(C) f = open(“file.txt”,’w’)
(D) f = open(“file.txt”, ‘r’)
Q32 Choose the correct syntax to open a file in append mode. KNOWLEDGE AND
(A) with open(“file.txt”, “a”) as f : UNDERSTANDING
(B) with open(“file.txt”) as “f”
(C) with open(“file.txt”, “a”) as f
(D) with open(“file.txt”, “w”) as f :
Q33 Which of the following is not a valid file access mode? KNOWLEDGE AND
(A) a+ UNDERSTANDING
(B) r
(C) w
(D) b+
Q34 Choose the correct syntax to close a file. KNOWLEDGE AND
(A) f.closed UNDERSTANDING
(B) f.close()
(C) f.closed()
(D) f.close
Q35 Which method is used to write multiple strings/lines in a KNOWLEDGE AND
text file? UNDERSTANDING
(A) write()
(B) writeline()
(C) writelines()
(D) writesingle()
Q36 Which method is used to write a single string/line in a KNOWLEDGE AND
text file? UNDERSTANDING
(A) write()
(B) writeline()
(C) writelines()
(D) writesingle()
Q37 Which of the following statements is correct? KNOWLEDGE AND
(A) In r+ mode, a file opens for both reading and writing UNDERSTANDING
if it already exists. The file pointer placed at the
beginning of the file.
(B) In w+ mode, a file opens for both writing and
reading. Overwrites the existing file if the file exists. If
the file does not exist, create a new file for reading and
writing.
(C) Both of the above
(D) None of the above
Q38 By default, in which mode a file open. KNOWLEDGE AND
(A) r UNDERSTANDING
(B) w
(C) a
(D) None of the above
Q39 While using an open function in which mode a text file APPLICATION
will be created, if it does not exist already.
(A) r+
(B) w
(C) Both of the above
(D) None of the above
Q40 While using an open function in which mode a text file APPLICATION
will not be created, if it does not exist already.
(A) r+
(B) r
(C) Both of the above
(D) None of the above
Q41 Which of the following iterable objects can be passed to APPLICATION
the writelines() method for writing multiple lines/strings
in a text file.
(A) list
(B) tuple
(C) Both of the above
(D) None of the above
Q42 Which of the following is not a correct statement? APPLICATION
(A) write and append modes opens file for writing.
(B) In both modes file pointer for existing file sets to
beginning of file, when opened.
(C) In append mode existing data do not get overwritten,
whereas in writing mode existing data gets overwritten.
(D) By adding ‘+’ symbol both can be able to open files
in reading mode also.
Q43 A user opened a file using code : f = open(“story.txt”,’r’) ANALYSIS,
But the file “story.txt” does not get opened. Find the EVALUATION AND
appropriate reason for not opening the file. CREATION
(A) There is a syntax error in the code.
(B) File pointer name is not correct.
(C) User need to include the absolute path of file location.
(D) File does not exist.
Q44 Consider the code: ANALYSIS,
lines = ['This is line 1', 'This is line 2'] EVALUATION AND
with open('readme.txt', 'w') as f: CREATION
f.writelines(lines)
Which of the following statements is true regarding the
content of the file ‘readme.txt’?
(A) Both strings of list lines will be written in two
different lines in the file ‘readme.txt’.
(B) Both strings of list lines will be written in the same
line in the file ‘readme.txt’.
(C) string 1 of list lines will overwrite string 2 of list lines
in the file ‘readme.txt’.
(D) string 2 of list lines will overwrite string 1 of list lines
in the file ‘readme.txt’.
Q45 Consider the code: ANALYSIS,
lines = ['This is line 1', 'This is line 2'] EVALUATION AND
with open('readme.txt', 'w') as f: CREATION
for line in lines:
f.write(line+’\n’)
Which of the following statements is true regarding the
content of the file ‘readme.txt’?
(A) Both strings of list lines will be written in two
different lines in the file ‘readme.txt’.
(B) Both strings of list lines will be written in the same
line in the file ‘readme.txt’.
(C) string 1 of list lines will overwrite string 2 of list lines
in the file ‘readme.txt’.
(D) string 2 of list lines will overwrite string 1 of list lines
in the file ‘readme.txt’.
Q46 What are the file types in Python?
(A) Text File Understanding
(B) TSV File
(C) CSV File
(D) All of the above
Q47. Which command is used to open a text file in Python in Analysis
reading mode?
(A) F = open( )
(B) F = open(“Data.Txt”,”w”)
(C) F = open(“Data.Txt,”r”)
(D) All of the Above
Q48 What is the use of File Object? Knowledge
(A) File Object Serves as a link to a file
(B) File Objects are used to read and write data to the file
(C) A file Object is a reference to a file on disk
(D) All of the above
Q49 Which is the default mode to open a file? Knowledge
(A) read mode
(B) r+ mode
(C) write mode
(D) w+ mode
Q50 Which mode creates a new file, when open file ? Understanding
(A) w+ mode
(B) a mode
(C) a+ mode
(D) All of the above
Q51 Which function is used to read the contents from a file? Knowledge
(A) read ( )
(B) write ( )
(C) close ( )
(D) None of these
Q52 Which of the following command is used to open a file Application
“C:\\Data.txt for writing as well as reading mode ?
(A) f = open(“c:\\pat.txt”,”w”)
(B) f = open(“c:\\pat.txt”,”wb”)
(C) f = open(“c:\\pat.txt”,”w+”)
(D) f = open(“c:\\pat.txt”,”wb+”)
Q53 Which function is used to write a list of strings in a file? Understanding
(A) writeline ( )
(B) writelines ( )
(C) writelist ( )
(D) writefulline ( )
Q54 When open a file in append mode, by default new data Analysis
can be added at the?
(A) Beginning of the file
(B) End of the file
(C) At the middle of the file
(D) All of the above
Q55. Find the output of the following code – Application
fp = open("sample.txt", "r")
fp.read(8)
print(fp.tell())
fp.close()
(A) 0
(B) 7
(C) 8
(D) 9
Q56 What will be the output of the following code if content application
of the file “smile.txt” is: Smiling is infectious,
You catch it like the flu.
When someone smiled at me today,
I started smiling too.
file=open(“smile.txt”)
contents=file. read()
print(file. read (7))
(A) Smiling
(B) Smilin
(C) ng too.
(D) No output
Q57 If the content of the file “wish.txt” is – “Happy”, then Application
what will be the content of the file after executing the
following statements –
f=open (“wish.txt”, ‘w’)
f. write(“Birthday”)
f. close()?
(A) Happy Birthday
(B) HappyBirthday
(C) Happy
(D) Birthday
Q58 Consider a code: Creation
Fileobj = open("story.txt", 'a')
x= 200
a= Fileobj.write(x)
Fileobj.close()
What is the output of the above given code?
(A) Generates an error : x must be string .
(B) It will write 200 at the end of the file.
(C) It will write 200 at the beginning of the file.
(D)It will delete the existing content and write 200 in the
beginning.
Q63 The file mode is used when user want to read and UNDERSTANDING
write data into Text file. KNOWLEDGE
(A) rb
(B) b
(C) r+
(D) w
Q64 The file mode is used when user want to write and UNDERSTANDING
read data into Text file. KNOWLEDGE
(A) rb
(B) w+
(C) r+
(D) w
Q65 The file mode is used when user want to append UNDERSTANDING
data into Text file. KNOWLEDGE
(A) rb
(B) w+
(C) r+
(D) a
Q72 observe the following code and answer the follow UNDERSTANDING
f1=open("mydata","a") KNOWLEDGE
#blank1 ANALYSIS
f1.close()
Fill in the blank1 with correct statement to write "abc"
in the file "mydata"
(A) f1.write(“abc”)
(B) write(abc)
(C) write.f1(abc)
(D) None of the above
Q73 In which of the following file modes the existing data of UNDERSTANDING
the file will not be lost? KNOWLEDGE
(A) ab and a+b mode ANALYSIS
(B) r mode
(C) w mode
(D) None of the above
Q74 To take file pointer to nth character with respect to r UNDERSTANDING
position in seek method KNOWLEDGE
(A) f1.seek(r) ANALYSIS
(B) f1.seek(n)
(C) f1.seek(n,r)
(D) seek(n,r).f1
(a) fobj.read(2)
(b) fobj.read()
(c) fobj.readline()
(d) fobj.readlines()
Q77 Which statement is used to change the file position Understanding
to an offset value from the start?
(a) fp.seek(offset, 0)
(b) fp.seek(offset, 1)
(c) fp.seek(offset, 2)
(d) None of the above
Q78 Which statement is used to retrieve the current Knowledge
position within the file?
(a) fp.seek()
(b) fp.tell()
(c) fp.loc
(d) fp.pos
Q79 What happens if no arguments are passed to the seek() Knowledge
method?
(a) file position is set to the start of file
(b) file position is set to the end of file
(c) file position remains unchanged
(d) results in an error
Q80
Which function is used to read single line from file? Knowledge
(a) readline()
(b) readlines()
(c) readstatement( )
(d) readfulline()
Q81 Which function is used to change the position of the Knowledge
File Handle to a given specific position.
a. seek()
b. read()
c. tail()
d. write()
Q82 What is the use of seek() method in files? Understanding
a) sets the file‟s current position at the offset
b) sets the file‟s previous position at the offset
c) sets the file‟s current position within the file
d) none of the mentioned
Q83 How do you change the file position to an offset Understanding
value from the start?
a) fp.seek(offset, 0)
b) fp.seek(offset, 1)
c) fp.seek(offset, 2)
d) none of the mentioned
Q84 How many arguments passed to the tell()? Knowledge
a. 0
b. 1
c. 2
d. variable number of arguments
Q85 How do you change the file position to an offset Understanding
value from the start?
a) fp.seek(offset, 0)
b) fp.seek(offset, 1)
c) fp.seek(offset, 2)
d) none of the mentioned
Q86 What happens if no arguments are passed to the Knowledge
seek function?
a) file position is set to the start of file
b) file position is set to the end of file
c) file position remains unchanged
d) error
Q87 readlines() method return Knowledge
a. String
b. List
c. Dictionary
d. Tuple
Q88 Which of the following method is used to read a specified Knowledge
number of bytes of data from a data file.
a. read( )
b. read(n)
c. readlines( )
d. reading(n)
Q89 Write the output of the following: Understanding
f=open("test.txt","w+")
f.write("File-Handling")
f.seek(0)
a=f.read(5)
print(a)
a. File-
b. File
c. File-H
d. No Output
Q90 Write the output of the following: Understanding
f=open("test.txt","w+")
f.write("FileHandling")
f.seek(0)
a=f.read(-1)
print(a)
a. File
b. Handling
c. FileHandling
d. No Output
Q91 Knowledge
Soumya is learning to use word processing software for
the first time. She creates a file with some text
formatting features using notepad. What type of file is
she working on?
A. Text file
B. CSV file
C. Binary file
D. All of the above
Q92 To read the remaining lines of the file from a file object F, Knowledge
we use
A. F.read
B. F.read()
C. F.readlines()
D. F.readline()
Q93 Which statement is used to retrieve the current position Knowledge
within file?
A. seek()
B. tell()
C. loc()
D. pos()
Q100 To read the 02 characters of the file from a file object F, Knowledge &
we use Application
A. F.read(2)
B. F.read()
C. F.readlines()
D. F.readline()
Q101 To read the next line of the file from a file object F, we Knowledge &
use Application
A. F.read(2)
B. F.read()
C. F.readlines()
D. F.readline()
Q105 Knowledge ,
Consider a file ‘rhyme.txt’
understanding &
application
What will be the output of the following code?
fileobj = open('forest.txt', 'r')
R1 = (fileobj.readline().split())
for word in R1:
for ch in range(len(word)-1,-1,-1):
print(word[ch],end='')
print(end='')
fileobj.close()
A. rewoPot.rewopmE
B. .rewopmE rewoPot
C. Empower. to Power
D. Power Empower. to
Q106 'n' characters from the file can be read by .................. Understanding
method
(A) readline(n)
(B) readlines(n)
(C) reads(n)
(D) read(n)
Q107 In which format does the readlines( ) function give the Knowledge
output?
(A) Integer type
(B) list type
(C) string type
(D) tuple type
Q108 Which of the following options can be used to read the Application
first line of a text file Myfile.txt?
(A) myfile = open('Myfile.txt');
myfile.read()
(B) myfile = open('Myfile.txt','r');
myfile.read(1)
(C) myfile = open('Myfile.txt');
myfile.readline()
(D) myfile = open('Myfile.txt');
myfile.readlines()
Q109 To read two characters from a file object infile, we use Application
(A) infile.read(2)
(B) infile.read()
(C) infile.readline()
(D) infile.readlines()
Q110 To read the entire remaining contents of the file as a Application
string from a file object infile as string, we use
(A) infile.read(2)
(B) infile.read()
(C) infile.readline()
(D) infile.readlines()
Q111 Read following Python code carefully and predict the Creation
correct output of the code
f=open("test.txt","r")
print(f.tell(),end="6")
f.seek(5)
print(f.tell())
(A) 605
(B) 506
(C) 065
(D) 560
Q112 What does the readline() method returns? Understanding
(A) str
(B) a list of lines
(C) list of single characters
(D) list of integers
Q113 How do you change the file position to an offset value Analysis
from the start?
(A) fp.seek(offset, 0)
(B) fp.seek(offset, 1)
(C) fp.seek(offset, 2)
(D) none of the mentioned
Q114 Which statement will return one line from a file (file Understanding
object is ‘f’) as string?
(A) f.readlines( )
(B) f.readline( )
(C) f.read( )
(D) f.line(1)
Q115 Which function is used to read data from Text File? Understanding
(A) read( )
(B) writelines( )
(C) pickle( )
(D) dump( )
Q116 The syntax of seek() is: file_object.seek(offset [, Analysis
reference_point])
What is reference_point indicate?
(A) reference_point indicates the starting position of
the file object
(B) reference_point indicates the ending position of
the file object
(C) reference_point indicates the current position of
the file object
(D) All of the above.
Q117 The syntax of seek() is:file_object.seek(offset [, Application
reference_point]) What all values can be given as a
reference point?
(A) 1
(B) 2
(C) 0
(D) All of the above
Q118 What will be the output of the following code snippet? Analysis
f = None
for i in range (5):
with open("myfile.txt", "w") as f:
if i > 2:
break
print (f.closed)
(A) Runtime Error
(B) True
(C) False
(D) Hello world
Q119 What happens if no arguments are passed to the seek Analysis
function?
(A) file position is set to the start of file
(B) file position is set to the end of file
(C) file position remains unchanged
(D) error
Q120 How do you change the file position to an offset value Application
from the current position?
(A) fp.seek(offset, 0)
(B) fp.seek(offset, 1)
(C) fp.seek(offset, 2)
(D) none of the mentioned
Q121 What are the file types in Python?
(A) Text File Understanding
(B) Binary File
(C) CSV File
(D) All of the above
Q122 What are the examples of Binary file in Python?
(A) .jpeg Understanding
(B) .gif
(C) .bmp
(D) All of the above
Q123 Which command is used to open a binary file in Python in Analysis
reading mode?
(A) F = open(“Data.dat”,”ab”)
(B) F = open(“Data.dat”,”wb”)
(C) F = open(“Data.dat, “rb”)
(D) All of the Above
Q124 Which command is used to open a binary file in Python in Analysis
append mode?
(A) F = open(“Data.dat”,”ab”)
(B) F = open(“Data.dat”,”wb”)
(C) F = open(“Data.dat, “rb”)
(D) None of the Above
Q125 Which operations can be performed in Python using Knowledge
“rb+” mode?
(A)Read
(B)Write
(C)Append
(D)Both Read and Write
Q126 Which operations can be performed in Python using Knowledge
“wb+” mode?
(A)Read
(B)Write
(C)Append
(D)Both Read and Write
Q127 Which operations can be performed in Python using Knowledge
“ab+” mode?
(A)Read
(B)Write
(C)Append
(D)Both Read and Write
Q128 Which function is used to close the contents of a binary Knowledge
file?
(A) read ( )
(B) write ( )
(C) close ( )
(D) None of these
Q129 When we open a Binary file in append mode , by default Understanding
new data can be added at the?
(A) Beginning of the file
(B) End of the file
(C) At the middle of the file
(D) All of the above
Q130 File object is also called: Knowledge
(A)read-handle
(B)file-handle
(C)data-Handle
(D) All of the above
Q131 In python binary file is treated as a : Understanding
(A)Sequence of bits
(B)Sequence of Bytes
(C)Sequence of numbers
(D)Sequence of characters
Q153 Steps to work with Binary File in Python import pickle Analysis
module. writing or appending data.
A) Open File in required mode (read, write or append).
B) Write statements to do operations like reading,
C) Close the binary file
D) All
Q157 Which of the following file mode open a file for reading Knowledge
and writing both in the binary file?
A) w
B) wb+
C) wb
D) rwb
Q158 Ms. Suman is working on a binary file and wants to write Application
data from a list to a binary file. Consider list object as l1,
binary file suman_list.dat, and file object as f. Which of
the following can be the correct statement for her?
A) f = open(‘sum_list’,’wb’); pickle.dump(l1,f)
B) f = open(‘sum_list’,’rb’); l1=pickle.dump(f)
C) f = open(‘sum_list’,’wb’); pickle.load(l1,f)
D) f = open(‘sum_list’,’rb’); l1=pickle.load(f)
Q159 In which of the file mode existing data will be intact in Understanding
binary file?
A) ab
B) a
C) w
D) wb
Q160 Which one of the following is correct statement? Evaluation
A) import – pickle
B) pickle import
C) import pickle
D) All of the above
Q161 Dump method is used to Knowledge
A) Write in a text file
B) Write in a binary file
C) Read from text file
D) Read from binary file
Q162 Which module is needed to be imported to work with Analysis
binary file?
A) csv module
B) random module
C) binary module
D) pickle module
Q163 Which method is used to change the current file pointer Knowledge
position?
A) offset()
B) tell()
C) seek()
D) point()
Q164 In binary file data is stored in which format Understanding
A) Binary
B) Text
C) ASCII
D) UNICODE
Q165 Binary file has advantage over text file. Analysis
A) It occupies less memory
B) It is fast to work with binary file
C) Computer understands this data without any
conversion
D) All of the above
Sl.No Question: Learning Objective
Q166 The module, which can use to process binary file About basic library to
use for binary file
(A) json
(B) lxml
(C) pickle
(D) none of these
Q167 Correct statement to declare necessary library to process Knowledge about syntax
the records by directly access the audio data as python to use pickle
objects
(A) pickle import
(B) import pickle as pkd
(C) import audio
(D) audio import
Q168 The method used to serialise the python objects for Awareness about method
writing data in binary file of pickle module to write
data
(A) dump( )
(B) open( )
(C) write( )
(D) serialise( )
Q169 The statement to prepare the buffer in memory to The correct syntax of use
examine the contents of the binary file (‘data.dat’) of open( ) function to
read binary file
(A) f=open( “data.dat” , “r”)
(B) f=open( data.dat , “rb” ).
(C) f=open( data.dat, “r” )
(D) f=open( “data.dat” , “rb” )
Q170 The method used to unpickling the data from a binary file Awareness about the
method to load data from
(A) unpickle( )
binary file to process
(B) load( )
(C) deserialise( )
(D) read( )
Q171 What is wrong with the following code ? Awareness about that
write( ) on binary file
listvalues = [1, “Geetika”, ‘F’, 26]
requires bytes only.
fileobject = open( ‘mybinary.dat’ , ‘wb’ )
fileobject.write ( listvalues)
fileobject.close( )
(A) error in open mode of file
(B) error, pickle is essential to use write( )
(C) error in write( )
(D) No error
Q172 Let the file ‘abc.csv’ contains the following records in Awareness about that,
comma separated way processing csv file using
binary methods will not
1,Geetika,F,26
work without converting
2,Jeevan,M,24 the loaded binary data to
text format before further
Consider the following code
processing
fileobject = open( ‘abc.csv’ , ‘rb’ )
contents=fileobject.read( )
lst=contents.split( )
for rec in lst:
print(lst.split(‘,’)[1],end=’#’)
fileobject.close( )
Q173 Through python code, a file ‘data.dat’ need to be created Aware about correct
and store the following record opening mode to save the
binary data into file
[‘XIIA’,{‘no of students’:25, ‘average attendance’:26}]
, which is to be stored in memory in form of python list
as specified above.
Consider the following code:
import pickle
fileobject=open( ‘data.dat’, ‘ ’) #statement1
listvalues =[‘XIIA’,{‘no of students’:25, ‘average
attendance’:26}]
pickle.dump( listvalues, fileobject)
fileobject.close( )
Fill in the blanks for statement1
(A) rb
(B) w
(C) wb
(D) r
Q174 Which of the following functions can accept more than Know about parameters
one positional argument? of methods of pickle
module
(A) pickle.load( )
(B) pickle.dump( )
(C) pickle.loads( )
(D) None of these
Q175 The method of pickle module to get the data from the Know about methods of
binary file pickle module
(A) dumps( )
(B) dump( )
(C) load( )
(D) loads( )
Q177 pickle.dump( ) on binary file opened in ‘ab’ mode Aware about work of
append mode in context
(A) add pickled python object at the end of file
of pickle
(B) insert pickled python object at position marked ‘a’
(C) store the given python object as a string
(D) none of these
Q178 The process of transforming data or an object in memory Aware about
(RAM) to a byte stream. Serialisation process
done by pickle module
(A) Byte
(B) Read
(C Serialisation
(D) Unpickle
Q179 Find output of following code Understand code,
involving pickle module
import pickle
fileobject=open(‘data.dat’ , ‘wb’)
L=[3,4,5,9]
pickle.dump(L, fileobject)
fileobject.close( )
fileobject=open(‘data.dat’ , ‘rb’)
print( pickle.load(fileobject)[1]*2)
fileobject.close( )
(A) [3, 4, 5, 9 ]
(B) [6,8,10,18].
(C) 6
(D) 8
def loadData():
dbfile = open('examplePickle', 'rb')
db = pickle.load(dbfile)
p=0
for keys in db:
p += db[keys][‘pay’]
print(p)
dbfile.close()
storeData()
loadData()
(A) 45000
(B) 70000
(C) 25000
(D) none of these
Q181. Which module is used to store data into python objects Understanding
with their structure?
(A) pickle
(B) binary files
(C) unpickle
(D) None of these
Q182 Which one of the following is the correct statement? Understanding
(A) pickle import
(B) import – pickle
(C) import pickle
(D) None of the above
Q183 Which function is use for reading data from a binary file? Application
(A) load()
(B) read()
(C) dump()
(D) None of the above
Q184 Which function is use for writing data in binary file? Creation
(A) load()
(B) write()
(C) dump()
(D) None of the above
Q185 the process in which an object converts into a Creation
byte stream
(A) unpickling
(B) pickling
(C) (A) and (B)
(D) None of the above
Q186 Serialization in binary file is also called Creation
(A) Unpickling
(B) Pickling
(C) Both (A) and (B)
(D) None of the above
Q187 function places the file pointer at the specified Knowledge
position by in an open file.
(A) tell()
(B) seek()
(C) both A and B
(D) None of the above
Q188. function return the current position of the file Knowledge
pointer.
(A) tell()
(B) seek()
(C) both A and B
(D) None of the above
Q189 Fill in the blank: Understanding,
import pickle Knowledge,
f=open("data.dat",'rb') Application, Evaluation
d= .load(f) # Statement1
f.close()
(A) unpickle
(B) pickling
(C) pickle
(D) pick
Q190 Which of the following function takes two arguments? Knowledge
a) load()
b) dump()
c) Both of the above
d) None of the above
Q191 .pdf and .doc are examples of files. Application
(A) Text
(B) Binary
(C) CSV
(D) None of the above
Q192 The syntax of seek() is : file_object.seek(offset Understanding
[,reference_point]). What all values can be given as a
reference point?
(A) 1
(B) 2
(C) 0
(D) All of the above
Q193 f.seek(10,0) will move 10 bytes forward from . Application
(A) beginning
(B) End
(C) Current
(D) None of the above
Q194 Which statement will move file pointer 10 bytes Understanding
backward from end position.
(A) F.seek(-10,2)
(B) F.seek(10,2)
(C) F.seek(-10,1)
(D) None of the above
Q195 Aman opened the file “myfile.dat” by using the following Evaluation
syntax. His friend told him few advantages of the given
syntax. Help him to identify the correct advantage.
with open(“myfile.dat”, ‘ab+”) as fobj:
(A) In case the user forgets to close the file explicitly
the file will closed automatically
(B) File handle will always be present in the
beginning of the file even in append mode.
(C) File will be processed faster
(D) None of the above.
Q196 Which of the following method is used to clear the Analysis
buffer?
(A) clear()
(B) buffer()
(C) flush()
(D) clean()
Q197 Write the output of the following: Understanding,
f=open(“t.dat”, “rb”) Knowledge,
print(f.tell()) Application, Evaluation
(A) 1
(B) 2
(C) -1
(D) 0
Q198 Write the output of the following: Understanding,
f=open(“t.dat”, “r”) Knowledge,
print(f.tell(), end=”6”) Application, Evaluation
f.seek(5)
print(f.tell())
(A) 165
(B) 650
(C) 065
(D) 506
S.No Question Learning Objective
Q199 Which mode create new file if the file does not exist? Knowledge
a) Write mode
b) Append mode
c) Both a & b
d) None of the above
Q200 seek() function is used to Understanding
a) Positions the file object at the specified location.
b) It returns the current position of the file object
c) It writes the data in binary file
d) None of these
Q201 Which function is used to read data from Binary File? Knowledge
a) read()
b) load()
c) pickle()
d) dump()
Q202 Which symbol is used for append mode in Binary file? Understanding
a) a
b) a+
c) ab
d) None
Q203 Which function is used to write data in Binary File? Knowledge
a) read()
b) load()
c) pickle()
d) dump()
Q204 Fill in the blank Analysis
import pickle
file=open("data.dat",'rb')
d= .load(f)
f.close()
a) pick
b) pickling
c) file
d) pickle
Q205 module is used for serializing Understanding
and de-serializing any Python object structure.
a) pickle
b) math
c) unpickle
d) random
Q222 Which of the following object you get after reading CSV Understanding
file?
(A) Character Vector
(B) Comma Vector
(C) Panel
(D) DataFrame
Q223 Which of the following is a function of csv module? Evaluation
(A) writerrow()
(B) reading()
(C) writing()
(D) readline()
Q224 To open a file c:\myscores.csv for reading, we use Application
command.
(A) infile = open(“c:\myscore.csv”, “r”)
(B) infile = open(“c:\\myscore.csv”, “r”)
(C) infile = open(file = “c:\myscore.csv”, “r”)
(D) infile = open(file = “c:\\myscore.csv”, “r”)
Q225 Which of the following statement(s) are true for csv files? Understanding
(A) Existing file is overwritten with the new file if
already exist
(B) If the file does not exist, a new file is created for
writing purpose
(C) When you open a file for reading, if the file does not
exist, an error occurs
(D) All of the above
Q226 To read the entire content of the CSV file as a nested list Application
from a file object infile, we use command.
(A) infile.read()
(B) infile.reader()
(C) csv.reader(infile)
(D) infile.readlines()
Q227 Which of the following is not a valid mode to open CSV Creation
file?
(A) a
(B) w
(C) r
(D) ab
Q228 The CSV files are popular because they are Understanding
(A) capable of storing large amount of data
(B) easier to create
(C) preferred export and import format for databases and
spread sheets
(D) All the above
Q229 When iterating over an object returned from csv.reader(), Application
what is returned with each iteration?
For example, given the following code block that assumes
csv_reader is an object returned from csv.reader(), what
would be printed to the console with each iteration?
for item in csv_reader:
print(i)
(A) The individual value data that is separated by the
delimiter
(B) The row data as a list
(C) The column data as a list
(D) The full line of the file as a string
Q230 Which of the following parameter needs to be added with Application
open function to avoid blank row followed by each row in
the CSV file?
(A) quotechar
(B) quoting
(C) newline
(D) skiprow
Q231 In separated value files such as .csv, what does the first Understanding
row in the file typically contain?
(A) The author of the table data
(B) The column names of the data
(C) The source of the data
(D) Notes about the table data
Q232 A is a file format which stores records Knowledge
separated by comma.
(A) .jpg
(B) .pdf
(C) .csv
(D) None of the above
Q233 Which of the following Python statement is used to read Understanding
the entire content of the CSV file as a nested list from a
file object infile?
(A) infile.read()
(B) infile.reader()
(C) csv.reader(infile)
(D) infile.readlines()
Q234 What is the full form of CSV? Knowledge
(A) Comma Separated Values
(B) Comma Separated Value
(C) Comma Separated Variables
(D) Comma Separate Values
Q235 EOL character used in windows operating system in CSV Knowledge
files is
(A) \r\n
(B) \n
(C) \r
(D) \0
Q236 is the default delimiter character of a CSV Knowledge
file.
(A) : (colon)
(B) \t (tab)
(C) , (comma)
(D) ; (semi-colon)
Q237 A CSV file marks.csv is stored in the storage device. Application
Identify the correct option out of the following options to
open the file in read mode.
i. myfile = open('marks.csv','r')
ii. myfile = open('marks.csv','w')
iii. myfile = open('marks.csv','rb')
iv. myfile = open('marks.csv')
(A) only i
(B) both i and iv
(C) both iii and iv
(D) both i and iii
Q238 Which of the following is a function of the csv module? Knowledge
(A) readline()
(B) reader()
(C) read()
(D) readrow()
Q239 What is the output of the following program? Application
import csv
d=csv.reader(open('city.csv'))
for row in d:
print(row)
break
If the file called city.csv contains the following details
Bhubaneshwar, Kolkata
Guwahati, Silchar
(A) Guwahati, Silchar
(B) Bhubaneshwar, Kolkata
(C) Bhubaneshwar, Kolkata
Guwahati, Silchar
(D) Bhubaneshwar
Guwahati
Q240 The CSV files are files. Knowledge
(A) Python
(B) Binary
(C) Data
(D) Text
Q241 The writer() function has how many mandatory Understanding
parameters?
(A) 1
(B) 2
(C) 3
(D) 4
Q242 Vikas wants to separate the values in a csv file by a # Understanding
sign. Suggest to him a pair of function and parameter to
use it.
(A) open,quotechar
(B) writer,quotechar
(C) open,delimiter
(D) writer, delimiter
Q243 Which of the following option is correct? Understanding
i. if we try to read a csv file that does not exist, an
error occurs.
ii. if we try to read a csv file that does not exist, the
file gets created.
iii. if we try to write on a csv file that does not exist,
an error occurs.
iv. if we try to write on a csv file that does not exist,
the file gets Created.
(A) only i
(B) only iv
(C) both i and ii
(D) both i and iv
ANSWERS
Question No Answer
Q1 (D) No Output
Q2 (C) ..\First Term\Result1.xlsx
(D) In ‘a+’ mode, both reading and writing operations can take
Q3 place and new data is appended to the end of the existing file.
Q4 (B) disp = fileobj.readlines()
Q5 (C) Both (ii) and (iii)
Q6 (C) Binary file
Q7 (C) tell()
(C) It will place the pointer at 25 bytes from the beginning of the
Q8 file.
Q9 (A) dt = f.readlines();print(dt[3])
Q10 (A) reader(), writer()
Q11 (D) All of the above
Q12 (B) slowly but steadily
Q13 (C) 9
Q14 (A) write()
(B) In r+ mode, the pointer is initially placed at the beginning of
Q15 the file and for w+, the pointer is placed at the end.
Q16 C
Q17 B
Q18 B
Q19 A
Q20 D
Q21 B
Q22 c
Q23 B
Q24 C
Q25 B
Q26 B
Q27 D
Q28 B
Q29 A
Q30 A
(C) f = open(“file.txt”,’w’)
Q31
Q32 (A) with open(“file.txt”, “a”) as f :
Q33 (D) b+
Q34 (B) f.close()
Q35 (C) writelines()
Q36 (A) write()
Q37 (C) Both of the above
Q38 (A) r
Q39 (B) w
Q40 (C) Both of the above
Q41 (C) Both of the above
(B) In both modes file pointer for existing file sets to beginning of
Q42 file.
Q43 (D) File does not exist
(B) Both strings of list lines will be written in the same line in the
Q44 file ‘readme.txt’.
(A) Both strings of list lines will be written in two different lines
Q45 in the file ‘readme.txt’.
D
Q46
Q47 C
Q48 D
Q49 A
Q50 D
Q51 A
Q52 C
Q53 B
Q54 B
Q55 C
Q56 D
Q57 D
Q58 A
Q59 C
Q60 A
Q61 D
Q62 D
Q63 C
Q64 B
Q65 D
Q66 A
Q67 A
Q68 D
Q69 A
Q70 A
Q71 A
Q72 A
Q73 A
C
Q74
A
Q75
Q76 (b) fobj.read()
Q77 (a) fp.seek(offset, 0)
Q78 (b) fp.tell()
Q79 (d) results in an error
Q80 (a) readline()
Q81 a. seek()
Q82 a) sets the file‟s current position at the offset
Q83 a) fp.seek(offset, 0)
Q84 a. 0
Q85 a) fp.seek(offset, 0)
Q86 d) error
Q87 b. List
Q88 b. read(n)
Q89 a. File-
Q90 c. FileHandling
Q91 A
Q92 C
Q93 B
Q94 A
Q95 B
Q96 D
Q97 A
Q98 D
Q99 A
Q100 A
Q101 D
Q102 D
Q103 D
Q104 B
Q105 A
Q106 D
Q107 B
Q108 C
Q109 A
Q110 B
Q111 C
Q112 A
Q113 A
Q114 B
Q115 A
Q116 D
Q117 D
Q118 B
Q119 D
Q120 B
D
Q121
Q122 D
Q123 C
Q124 A
Q125 D
Q126 D
Q127 D
Q128 C
Q129 B
Q130 B
Q131 B
Q132 D
Q133 B
Q134 B
Q135 C
Q136 (A) A stream of bytes
Q137 (B) b
Q138 (A) Pickling
Q139 (D) Every line ends with new line character ‘\n’
Q140 (C) rb+
Q141 (D) B & C both
Q142 (C) ab+
Q143 (A) r
Q144 (B) rb
Q145 (B) Binary file
Q146 (B) Binary
Q147 (C) Binary File
Q148 (A) open( )
Q149 (C) A & B Both
Q150 (D) <fileobj>.close()
Q151 B
Q152 D
Q153 D
Q154 D
Q155 B
Q156 D
Q157 B
Q158 A
Q159 A
Q160 C
Q161 B
Q162 D
Q163 C
Q164 A
Q165 D
C
Q166
B
Q167
A
Q168
D
Q169
B
Q170
C
Q171
A
Q172
C
Q173
B
Q174
C
Q175
B
Q176
A
Q177
C
Q178
D
Q179
B
Q180
Q181 A
Q182 C
Q183 A
Q184 C
Q185 B
Q186 B
Q187 B
Q188 A
Q189 C
Q190 B
Q191 B
Q192 D
Q193 A
Q194 A
Q195 A
Q196 C
Q197 D
Q198 C
Q199 C
Q200 A
Q201 B
Q202 C
Q203 D
Q204 D
Q205 A
Q206 B
Q207 B
Q208 B
Q209 C
Q210 D
Q211 D
Q212 B
Q213 A
Q214 (C) csv
Q215 (B) Finding data uniquly
Q216 (D) 1
Q217 (B) Binary file
(A) source=”c:\\myfile.csv”
Q218 data = pd.read_csv(source)
Q219 (D) Both A & B
(A) Any character such as the comma (,) or tab ;) used to separate
Q220 the column data
Q221 (C) Column Heading
Q222 (D) DataFrame
Q223 (A) writerrow()
Q224 (B) infile = open(“c:\\myscore.csv”, “r”)
Q225 (D) All of the above
Q226 (C) csv.reader(infile)
Q227 (D) ab
Q228 (D) All the above
Q229 c) The column data as a list
Q230 c) newline
Q232 c) .csv
Q233 c) csv.reader(infile)
Q234 a) Comma Separated Values
Q235 a) \r\n
Q236 c) , (comma)
Q238 b) reader()
Q240 d) text
Q241 a) 1