0% found this document useful (0 votes)
49 views62 pages

File Handling Question Bank - MCQs

Uploaded by

studybiccho
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
49 views62 pages

File Handling Question Bank - MCQs

Uploaded by

studybiccho
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 62

ARMY PUBLIC SCHOOL KANPUR

Name of the Chapter- DATA FILE HANDLING


MULTIPLE CHOICE QUESTIONS

Question Question Content Learning Objective(if


No Provided)
Q1. Suppose content of ‘mytext.txt’ file is: Knowledge

What will be the output of the following code?


file = open(“mytext.txt”, ‘r’)
txt = file.read()
print(file.read(10))

(A) The key to


(B) obstacles.
(C) Error
(D No Output
Q2. Consider the following directory structure: Application

There are three directories under root directory ‘Admin’.


The current working directory is Final. Identify the
relative path name for file ‘Result1.xlsx’.
(A) .\Result1.xlsx
(B) Admin\Final\First Term\Result1.xlsx
(C) ..\First Term\Result1.xlsx
(D) First Term\Result1.xlsx

Q3. Which of the following statements is correct regarding Understanding


file access modes?
(A) In ‘r’ mode, we can read and write data from/in the
file.
(B) In ‘a’ mode, the existing data will be over-written if
the file exists.
(C) In ‘w’ mode, the data in the file is retained and new
data will be appended to the end.
(D) In ‘a+’ mode, both reading and writing operations can
take place and new data is appended to the end of the
existing file.

Q4. Consider a statement Understanding


fileobj = open(“myblog.txt”, ‘r’)
Which of the following options can be used to print the
last line of a text file ‘myblog.txt’?
(A) print(fileobj.readlines() -1)
(B) disp = fileobj.readlines()
print(disp[-1])
(C) print(fileobj.readlines(-1))
(D) print(fileobj.read(-1))

Q5. Which of the following statements is used to open a text Understanding


file to add new contents at the end of the already existing
text file named ‘mydiary.txt’?
(i) with open(“’mydiary.txt”, ‘w’) as fileobj:
(ii) fileobj = open(“mydiary.txt”, ‘a’)
(iii) with open(“mydiary.txt”,’a’) as fileobj:
(iv) with open(“mydiary”, ‘r+’) as fileobj:

(A) Only (i)


(B) Only (ii)
(C) Both (ii) and (iii)
(D) Both (i) and (iv)

Q6. “The information is stored in machine-readable format Understanding


and pickle module is used for reading and writing
data from/in the file.”
Identify the type of file discussed in the above lines?
(A) Text files
(B) CSV files
(C) Binary file
(D) All of the above

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

Q10. Which of the following groups of functions belongs to Application


CSV module?
(A) reader(), writer()
(B) readlines(), writelines()
(C) writerow(), read()
(D) writer(), readline()

Q11. Which is/are the basic I/O (input-output) stream(s) in Application


file?

(A) Standard Input


(B) Standard Output
(C) Standard Errors
(D) All of the above
Q12. Consider the content of the file ‘Story.txt’: Application

What is the output of the following code?


Fileobj = open("story.txt", 'r')
S1= Fileobj.read(20)
S2= Fileobj.tell()
Fileobj.seek(34,0)
S3= Fileobj.read(20)
print(S3)

(A) The Tortoise meanwhi


(B) slowly but steadily
(C) Hare was sleeping
(D) he Tortoise in time

Q13. Consider a file “online.txt” Evaluation

What will be the output of the following code?


fileobj=open('online.txt','r')
count = 0
l=fileobj.readline()
for i in l:
if 'o' in i:
count=count+1
print(count)
fileobj.close()

(A) 10
(B) 8
(C) 9
(D) 20

Q14. Which function is used to write all the characters? Understanding

(A) write()
(B) writecharacters()
(C) writeall()
(D) writechar()

Q15. What is the difference between r+ and w+ modes? Knowledge

(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.

Q16 Information stored on a storage device with a specific


name. is called a
A. Array
B. Dictionary
C. file
D. tuple

Q17 EOL stands for


A. End of Lines
B. End Of Line
C. End Of List
D. End Of Location

Q18 Which of the following file types allows to store large


data files in the computer memory?
A. Text Files
B. Binary Files
C. CSV Files
D. None of these

Q19 Which of the following functions transfer the data to file


before closing the file?
A. flush()
B. close()
C. open()
D. fflush()

Q20 Which of the following is not a known file type?


A. csv
B. pdf
C. txt
D. txp

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

Q22 Which of the following is not a correct statement for


binary files?
A. Easy for carrying data into buffer
B. Much faster than other file systems
C. Every line ends with new line character ‘\n’
D. Characters translation is not required

Q23 Which of the following file types can be opened with


notepad as well as ms excel?
A. Text Files
B. CSV Files
C. Binary Files
D. None of these

Q24 Which of the following format of files can be created


programmatically through python to store some data?
A. Pdf file
B. Audio file
C. Binary file
D. Video file

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

Q26 is a file format which stores records separated


by comma.
A. .tsv
B. .csv
C. .py
D. .bin
Q27 The CSV files can be operated by software.
A. Spreadsheet
B. Notepad
C. MS Excel
D. All of the above

Q28 Which of the following parameter needs to be added with


open function to avoid blank row followed file each row
in CSV file?
A. delimiter
B. newline
C. writer, delimiter
D. file object

Q29 12. Default EOL character in Python.


A. ‘\n’
B. ‘\r’
C. ‘’
D. ‘\t’

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.

Q59 Consider a file “online.txt” Application


With educational institutes closed due to the COVID-19
pandemic, the government has been encouraging online
education to achieve academic continuity.
Online education allows for learning something beyond
the norm.
What will be the output of the following code?
fileobj=open('online.txt','r')
count = 0
l=fileobj.readline()
for i in l:
if 'o' in i:
count=count+1
print(count)
fileobj.close()
(A) 10
(B) 8
(C) 9
(D)20
Q60 Consider the content of ‘rhyme.txt’ file: Analysis

What will be the output of the following code?


fileobj=open(‘rhyme.txt','r')
count = 0
l=fileobj. readlines()
for i in l:
if(i[0]=='H'or i[0]==’T’):
count=count+1
print(count)
fileobj.close( )
(A) 4
(B) 2
(C) 3
(D) 1
Q61 Which of the following file mode will refer to the TEXT UNDERSTANDING
mode? KNOWLEDGE
ANALYSIS
(A) rb
(B) b
(C) b+
(D) w
Q62 The file mode is used when user want to write data UNDERSTANDING
into Text file. KNOWLEDGE
(A) rb
(B) b
(C) b+
(D) w

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

Q66 Name the function to read from Text file. UNDERSTANDING


(A) read() KNOWLEDGE
(B) csv.reader() ANALYSIS
(C) csv.read()
(D) reader()

Q67 The correct syntax to read from Text file is UNDERSTANDING


(A) <filehandle>.read() KNOWLEDGE
(B) read.(filehandle) ANALYSIS
(C) read(filehanle).txt
(D) None of the above
Q68 The correct syntax to reads a line of input from Text file UNDERSTANDING
is KNOWLEDGE
(A) <filehandle>.read() ANALYSIS
(B) readline.(filehandle)
(C) read(filehanle).txt
(D) <filehandle>.readline()
Q69 The correct syntax to reads all lines of input from Text UNDERSTANDING
file and returns them in a list is KNOWLEDGE
(A) <filehandle>.readlines() ANALYSIS
(B) readline.(filehandle)
(C) read(filehanle).txt
(D) <filehandle>.readline()
Q70 In which file, delimiters are used for line and translations UNDERSTANDING
occur? KNOWLEDGE
(A) Text file ANALYSIS
(B) Binary file
(C) Both are correct
(D) None of the above
Q71 observe the following code and answer the follow UNDERSTANDING
f1=open("mydata","a") KNOWLEDGE
#blank1 ANALYSIS
f1.close()
what type of file is mydata?
(A) Text file
(B) Binary file
(C) Both are correct
(D) None of the above

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

Q75 It returns the current position of cursor in the file UNDERSTANDING


(A) f1.tell() KNOWLEDGE
(B) f1.seekn(n) ANALYSIS
(C) f1.seek.tell(n,r)
(D) tell(n,r).f1
Sl No Questions Learning Objective
Q76 To read the entire contents of the file as a string Knowledge
from a file object fobj, the command should be:

(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()

Q94 In text file each line is terminated by a special character Knowledge


called ?
A. EOL
B. END
C. Full Stop
D. EOF

Q95 What error is returned by following statement, if file Knowledge &


“try.txt” does not exist? understanding
f = open(“try.txt”)
A. Not Found
B. File Not Found Error
C. File Does Not Exist
D. No Error

Q96 To open a file c:/story.txt reading we Knowledge &


use understanding
A. F=open(‘c:/story.txt’,r)
B. F=open(‘c://story.txt’,r)
C. F=open(‘c:\story.txt’,r)
D. F=open(‘c:\\story.txt’,r)

Q97 Another name of file object is Knowledge


A. File handle
B. File name
C. No another name
D. File
Q98 Name the module required for Text Files knowledge
A. Pickle
B. CSV
C. String
D. No module required

Q99 To open a file Myfile.txt for appending , we can use understanding


A. F=open("Myfile.txt","a")
B. F=open(“Myfile.txt","w+")
C. F=open(r"d:\Myfolder\Myfile.txt","w")
D. F=open("Myfile.txt","w")

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()

Q102 The readlines() method returns Knowledge


A. String
B. A List of integers
C. A list of characters
D. A List of Lines
Q103 Knowledge &
Assume you are reading from a text file from the
Application
beginning and you have read 10 characters. Now you
want to start reading from the 50th character from the
beginning. Which function will you use to do the same?
A. seek(50,1)
B. seek(50,2)
C. seek(40,0)
D. seek(50,0)
Q104 Consider the content of the file ‘Story.txt’ Knowledge ,
understanding &
application

What is the output of the following code?


Fileobj = open("story.txt", 'r')
S1= Fileobj.read(20)
S2= Fileobj.tell()
Fileobj.seek(34,0)
S3= Fileobj.read(20)
print(S3)
A. The Tortoise meanwhi
B. slowly but steadily
C. Hare was sleeping
D. he Tortoise in time

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

Q132 Which file mode is invalid? Knowledge


(A)ab
(B)rb+
(C)wb
(D)rw
Q133 Which file mode is valid? Knowledge
(A)b+
(B)rb+
(C)rw+
(D)rw
Q134. When we open a binary file in write mode the file pointer
is present at the:
(A)End of the file
(B)Beginning of the file
(C) Anywhere in between the file
(D) Second line of the file

Q135. What can be taken as a parameter in the open( ) function


of a binary file?
(A) File name
(B) Access mode
(C) Both of the above
(D) None of the above
Q136 A Binary file stores information in the form of Knowledge
.
(A) A stream of bytes
(B) A stream of ASCII characters
(C) A stream of UNICODE characters
(D) All of the above
Q37 Which of the following file mode will refer to the Understanding
BINARY mode?
(A) binary
(B) b
(C) bin
(D) w
Q138 The process of converting the structure to a byte stream Knowledge
before writing to the file is known as .
(A) Pickling
(B) Unpickling
(C) Conversion
(D) Changing
Q139 Which of the following is not a correct statement for Evaluation
binary files?
(A) Easy for carrying data into buffer
(B) Much faster than other file systems
(C) Characters translation is not required
(D) Every line ends with new line character ‘\n’
Q140 Which of the following file mode open a file for reading Knowledge
and writing both in the binary file?
(A) r
(B) rb
(C) rb+
(D) rwb
Q141 Which of the following file mode open a file for reading Knowledge
and writing both in the binary file?
(A) wb
(B) wb+
(C) w+b
(D) B & C both
Q142 Which of the following file mode opens a file for append Knowledge
or read a binary file and moves the files pointer at the end
of the file if the file already exist otherwise create a new
file?
(A) a
(B) ab
(C) ab+
(D) a+
Q143 Which is not the valid mode for binary files? Evaluation
(A) r
(B) rb
(C) rb+
(D) ab+
Q144 Suresh wants to open the binary file student.dat in read Application
mode. He writes the following statement but he does not
know the mode. Help him to find the same.
F=open(‘student.dat’, )
(A) r
(B) rb
(C) wb
(D) w
Q145 In which file type, no delimiters are used for line and no Knowledge
translations occur?
(A) Text file
(B) Binary file
(C) CSV file
(D) All of the above
Q146 The files are used to store large data such as Analysis
images, video files, audio files etc.
(A) Text
(B) Binary
(C) CSV
(D) None of the Above
Q147 Which type of the file executes faster? Analysis
(A) Text File
(B) CSV File
(C) Binary File
(D) Word File
Q148 Which of the following method is used to open a binary Evaluation
file?
(A) open( )
(B) run( )
(C) execute( )
(D) None of the above
Q149 Which of the following is / are arguments for open( ) Knowledge
method in a binary file?
(A) Path & file name
(B) Mode to open a binary file
(C) A & B Both
(D) Neither A Nor B
Q150 To close a binary file which of the following statement is Application
correct?
(A) <fileobj>.stop()
(B) <fileobj>.closebin()
(C) <fileobj>.stopbin()
(D) <fileobj>.close()
Q151 To open a file c:\scores.dat in binary for reading, we use
Application
A) infile = open(“c:\scores.txt”, “r”)
B) infile = open(“c:\\scores.dat”, “rb”)
C) infile = open(file = “c:\scores.txt”, “r”)
D) infile = open(file = “c:\\scores.txt”, “r”)

Q152 What is Binary File ? Knowledge


A) These files can not be read by humans directly.
B) No delimiter for a line
C) Processing of file is faster than text file
D) All

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

Q154 Which function is used to write data in binary mode? Knowledge


A) write
B) writelines
C) pickle
D) dump

Q155 Which function is used to read data in binary mode? Knowledge


A) read
B) load
C) pickle
D) dump

Q156 Which of the following is not a correct statement for Analysis


binary files?
A) Easy for carrying data into buffer
B) Much faster than other file systems
C) Characters translation is not required
D) Every line ends with new line character ‘\n’

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( )

Find the output of above code


(A) runtime error
(B) syntax error
(C) 1#2#
(D) Geetika#Jeevan#

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( )

Q176 In data handling through pickle module, seek( ) on working of seek()


fileobject function in context of
pickle module
(A) can place file position on specific record
(B) not useful, except placing the file position at start or
at end.
(C) gets the file position
(D) finds the length of file

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

Q180 Find output of the following code: Understand code,


involving pickle module
import pickle
def storeData():
# initializing data to be stored in db
Robert = {'name' : ‘Robert Dsouza’, 'age' : 25, 'pay' :
25000}
Rima = {'name' : ‘Rima Sood‘ ,'age' : 43, 'pay' : 45000}
db = {}
db[' Robert'] = Robert
db['Rima'] = Rima
dbfile = open('data.dat', 'ab')
pickle.dump(db, dbfile)
dbfile.close()

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

Q206 Which of the following function takes two arguments? Understanding


a) load()
b) dump()
c) Both of the above
d) None of the above
Q207 Almost all the files in our computer stored as Knowledge
file.
a) Text
b) Binary
c) CSV
d) None of the above
Q208 Read the code given below and answer the question: Analysis
import pickle
Fi=open("main.dat","wb")
pickle.dump("bye",Fi)
Fi.close()
If the file main.txt contains Good before execution, what
will be the content of the file after execution.
a) Good Bye
b) Bye
c) Nothing
d) Byed
Q209 Which of the following is not true about binary files? Understanding
a) Binary files are store in terms of bytes
b) When you open binary file in text editor will show
garbage values
c) Binary files represent ASCII value of characters
d) All of the above
Q210 In order to read the content from the Binary file, we can Understanding
open file in
a) “rb” mode
b) “rb+” mode
c) “wb+” mode
d) All of the above
Q211 Which of the following method is used to clear the Knowledge
buffer?
a) clear()
b) buffer()
c) close()
d) flush()
Q212 Fill in the blank in the given code : Analysis
import pickle
f = open("data.dat", "rb")
l = pickle. (f)
print(l)
f.close()
a) dump()
b) load()
c) write()
d) read()
Q213 Fill in the blank in the given code : Analysis
import pickle
f = open("data.dat", "wb")
L = [1, 2, 3]
pickle.
f.close()
a) dump(L,f)
b) dump(f,L)
c) load(L,f)
d) load(f,L
Q214 Which of the following module is provided by Python to Understanding
do several operations on the CSV files?
(A) os
(B) xls
(C) csv
(D) py
Q215 Which of the following is tasks cannot be done or Understanding
difficult with CSV module?
(A) Storing data in tabular form
(B) Finding data uniquly
(C) Saving data permanently
(D) All of these
Q216. The writer() function of csv module has how many Creation
mandatory parameters?
(A) 4
(B) 3
(C) 2
(D) 1
Q217 Which of these is not relevant to csv file? Understanding
(A) Text file
(B) Binary file
(C) Easily openable in text editor
(D) None of the above
Q218 You are having myfile.csv file on c drive. You want to Application
access it in python, how can you do this?
(A) source=”c:\\myfile.csv”
data = pd.read_csv(source)
(B) source=”c:\\myfile.csv”
data = pd.reads_csv(source)
(C) source=”c:\\myfile.csv”
data = pd.reader(source)
(D) None of the above
Q219 Which is the correct way to import a csv module? Application
(A) import csv
(B) from csv import *
(C) None of the above
(D) Both A & B
Q220 In regards to separated value in files such as .csv and .tsv, Understanding
what is the delimiter?
(A) Any character such as the comma (,) or tab ;) used to
separate the column data.
(B) Delimiters are not used
(C) Only the comma (,) character is used in the file
(D) Any character such as the comma (,) or tab ;) used to
separate the row data.
Q221 In separated value files such as .csv, what does the first Understanding
row in the file
typically contain?
(A) The author name
(B) Notes about the data
(C) Column Heading
(D) The source of the data

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

Q231 b) The column names of the data

Q232 c) .csv

Q233 c) csv.reader(infile)
Q234 a) Comma Separated Values

Q235 a) \r\n

Q236 c) , (comma)

Q237 b) both i and iv

Q238 b) reader()

Q239 b) Bhubaneshwar, Kolkata

Q240 d) text

Q241 a) 1

Q242 d) writer, delimiter

Q243 d) both I and iv

Made by: Kumar Gaurav

You might also like