McqMate
Q. |
To open a file c:\scores.txt for appending data, we use |
A. | outfile = open(“c:\\scores.txt”, “a”) |
B. | outfile = open(“c:\\scores.txt”, “rw”) |
C. | outfile = open(file = “c:\\scores.txt”, “w”) |
D. | outfile = open(file = “c:\\scores.txt”, “w”) |
Answer» A. outfile = open(“c:\\scores.txt”, “a”) | |
Explanation: a is used to indicate that data is to be appended. |
View all MCQs in
Problem Solving and Python ProgrammingNo comments yet