To read the entire remaining contents of the file as a string from a file object infile, we use ____________
Answer:
Checking the options:
-
(a)
infile.read(2)
- reads 2 characters. -
(b)
infile.read()
- reads the entire remaining contents of the file as a string. -
(c)
infile.readline()
- reads a line of input, and returns it in the form of a string. -
(d)
infile.readlines()
- It reads all lines and returns them in a list.
So, the correct answer is (b).