0 of 15 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 15 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
To open a file c:\scores.txt for reading, we use _____________
To open a file c:\scores.txt for writing, we use ____________
To open a file c:\scores.txt for appending data, we use ____________
Which of the following statements are true?
To read two characters from a file object infile, we use ____________
To read the entire remaining contents of the file as a string from a file object infile, we use ____________

To read the next line of the file from a file object infile, we use ____________
To read the remaining lines of the file from a file object infile, we use ____________
The readlines() method returns ____________
What is the use of tell() method in python?
What is the use of seek() method in files?
Which of the following mode will refer to binary data?
What is the use of “w” in file handling?
Is it possible to create a text file in python?
