There is no difference in the files, only in the way they are accessed. Sequential files are accessed just like they sound, sequentially, which means the if you want to read something that starts at...
During sequential access, if you want to access the nth byte of a file, you must read all bytes 0 through n. During random file access, you may skip directly to the nth byte without having to read...