Serial

Sequential

<aside> 👉 Adding a record 1. Data in the current file is copied into a temporary file 2. This is done record by record until the place where the record that needs to be inserted is reached 3. Record inserted in the correct place and rest of the records copied over 4. Old file deleted - temporary file becomes the new file

For deleting - same process but the unwanted record is simply not copied over when the temp file is created

</aside>

Indexed Sequential

Random/Direct Access