MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? fo = open("foo.txt", "wb") print "Name of the file: ", fo.name fo.flush() fo.close() |
| A. | Compilation Error |
| B. | Runtime Error |
| C. | No Output |
| D. | Flushes the file when closing them |
| Answer» E. | |