InterviewSolution
Saved Bookmarks
| 1. |
Why should the file be opened in I-O mode when it is being used for REWRITE purposes? |
|
Answer» When the file REWRITE of the RECORD needs to be performed, the file should first be OPENED and then the record must be READ from the file. This is why the file should always be opened in I-O mode. |
|