MCQOPTIONS
Saved Bookmarks
| 1. |
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» B. outfile = open( c: scores.txt , rw ) | |