sequential access


)Refers to reading or writing data records in sequential order, that is, one record after the other. To read record 10, for example, you would first need to read records 1 through 9. This differs from random access, in which you can read and write records in any order.

Some programming languages and operating systems distinguish between sequential-access data files and random-access data files, allowing you to choose between the two types. Sequential-access files are faster if you always access records in the same order. Random-access files are faster if you need to read or write records in a random order.

Devices can also be classified as sequential access or random access. For example, a tape drive is a sequential-access device because to get to point q on the tape, the drive needs to pass through points a through p. A disk drive, on the other hand, is a random-access device because the drive can access any point on the disk without passing through all intervening points.

Read Also:

  • serial

    One by one. Serial data transfer refers to transmitting data one bit at a time. The opposite of serial is parallel, in which several bits are transmitted concurrently.

  • serial mouse

    A mouse that connects to a computer via a serial port. The other common type of mouse is a PS/2 mouse, which plugs into a PS/2 mouse port.

  • SPI

    (1) Short for Serial Peripheral Interface, a full-duplex synchronous serial interface for connecting low-/medium-bandwidth external devices using four wires. SPI devices communicate using a master/slave relationship over two data lines and two control lines: Master Out Slave In (MOSI): supplies the output data from the master to the inputs of the slaves. Master In Slave […]

  • Serial Port

    A port, or interface, that can be used for serial communication, in which only 1 bit is transmitted at a time. Most serial ports on personal computers conform to the RS-232C or RS-422 standards. A serial port is a general-purpose interface that can be used for almost any type of device, including modems, mice, and […]

  • serialization

    The conversion of an object instance to a data stream of byte values in order to prepare it for transmission.


Disclaimer: sequential access definition / meaning should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional. All content on this website is for informational purposes only.