answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is an example of a sequentially accessed medium?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can a USB be accessed randomly or sequentially?

Randomly


Is it true or false that a dynamically linked list can be accessed both sequentially and randomly?

No. Linked lists require traversal, and are therefore accessed sequentially. For random access you need an array. An array of pointers to the data in your list would do, but you will incur an overhead in creating the array on top of the list.


What are sequential access files?

The file(s) (data) which are accessed in a sequential or a orderly manner is called as a sequentially accessing a file.


What are the uses of a magnetic tape?

Magenetic tape drives are obsolete. They were used to record data on the magnetic tapes.The data was accessed sequentially.


What are the uses of a magnetic tape drive?

Magenetic tape drives are obsolete. They were used to record data on the magnetic tapes.The data was accessed sequentially.


What is a example of medium?

water is an example of a medium.


What does sequentially mean?

sequentially means together in order


Does a hard drive run better randomly or sequentially?

sequentially


Does a drive perform better if it reads data randomly or sequentially?

Sequentially


What is the difference between a disk and tape in dbms?

In a DBMS, a disk is a permanent storage medium that provides fast random access to data, suitable for storing the primary database files. On the other hand, tape is a sequential storage medium that is typically slower and used for backup and archival purposes due to its lower access speed compared to disks. Tapes are often used for long-term storage of data that doesn't need to be accessed frequently.


Which linked list can be randomly accessed by given locations?

In a word, none. Linked lists are sequential and must be traversed sequentially. For random access you need an array, but you lose the efficiency of a list when it comes to insertion/deletion.


What is serial access?

SAM stores data as a series of memory cells that can only be accessed sequentially (like a cassette tape). If the data is not in the current location, each memory cell is checked until the needed data is found. SAM works very well for memory buffers, where the data is normally stored in the order in which it will be used (a good example is the texture buffer memory on a video card). RAM data, on the other hand, can be accessed in any order.