InterviewSolution
| 1. |
What Is A Sequential Access File? |
|
Answer» When writing programs that will store and RETRIEVE data in a file, it is POSSIBLE to designate that file into different forms. A sequential access file is such that data are SAVED in sequential order: one data is PLACED into the file after another. To access a particular data within the sequential access file, data has to be read one data at a time, until the RIGHT one is reached. When writing programs that will store and retrieve data in a file, it is possible to designate that file into different forms. A sequential access file is such that data are saved in sequential order: one data is placed into the file after another. To access a particular data within the sequential access file, data has to be read one data at a time, until the right one is reached. |
|