

InterviewSolution
Saved Bookmarks
1. |
To read two characters from a file object infile, we use ____________(a) infile.read(2)(b) infile.read()(c) infile.readline()(d) infile.readlines() |
Answer» Right answer is (a) infile.read(2) Explanation: Execute in the shell to verify. |
|