answersLogoWhite

0

give the examples of sequential access memory?

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What are the different data access methods?

Random Access & Sequential Access


What are the three types of file access control?

Sequential access,Random, Binary


When does Access automatically assigns either a sequential or random numbering field?

AutoNumber


In gw basic what are the two types of file handling?

Sequential and random access.


How many songs on random access memories?

13.


Is hard disk random access memory or sequantial access memory?

A hard disk is a Sequential Access Memory device or SAM


Random access and sequential access file in vb 6.0?

To access a particular data item in a sequential file, you need to read in all items in the file prior to the item of interest. This works acceptably well for small data files of unstructured data, but for large, structured files, this process is time-consuming and wasteful. Sometimes, we need to access data in non-sequential ways. Files which allow non-sequential access are random access files.


What is the difference between RAM and sequential memory?

RAM stands for Random Access Memory. Computer memory chips on the mother board are random access. Disks drives are mostly random access, in that the head can shift to the location of the data to be read. The memory is slightly sequential in that the head must wait for the tracks to spin beneath it before it can read them. An example of sequential memory would be a tape drive. The tape must advance or rewind to the next location where data is stored.In a sequential file you must begin reading from the first record and continue reading until you find the data you seek (or until the end). In a random access file you can specify the number or key of the record you wish to read or write. Random access tends to be much faster for this reason.


What are the techniques of file processing?

The common techniques of file processing include sequential access, random access, and direct access. Sequential access involves reading data sequentially from the beginning to the end of a file. Random access allows reading data from any part of the file without having to read the preceding data. Direct access uses a key or address to locate specific data within the file.


What is a indexed sequential file?

An indexed sequential file is a type of file organization where data records are stored sequentially in the order of key values. An index is maintained to help locate records quickly. This combination of sequential storage and indexing allows for efficient access to data in both sequential and random access patterns.


What are some similarities between flash drive and hard drives?

both of them are random access memories


What is a random access file in QBasic?

Random access simply means the ability to read and write anywhere in the file, as opposed to sequential access where data is simply appended to the end of the file and is accessed by traversing from the start of the file in sequential order. Random access is ideally suited to data arrays where every element in the file is exactly the same length, allowing constant-time traversal from one element to any other, in both directions. If the data is also sorted, random access also allows binary search to improve search efficiency.