Difficulty: Easy
Correct Answer: Magnetic tape
Explanation:
Introduction / Context:
Data access patterns vary across storage media. Understanding whether a medium supports random access or only sequential access is crucial for system performance planning and archival design.
Given Data / Assumptions:
Concept / Approach:
Magnetic tape stores data linearly along a long strip. To reach a given record, the tape must be wound forward or backward to that location—this is sequential by nature. Disks (floppy/hard) use addressable tracks and sectors, enabling near-random access. ROM is also random access by address lines.
Step-by-Step Solution:
Verification / Alternative check:
Backup/archival systems based on LTO tape require tape positioning and are optimized for streaming throughput rather than random I/O, confirming sequential semantics.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing file system behavior over a medium with the medium's physical access method; even if a file is fragmented, disks remain random-access media.
Final Answer:
Magnetic tape
Discussion & Comments