Which of the following components primarily determines the seek time when accessing data on a disk?
Seek time is related to the movement of the disk's mechanical parts.
Seek time is the time required for the disk arm to move the read/write head to the track where the data is stored. It depends on the mechanical movement of the arm.
Which of the following correctly lists the three main components of disk access time?
Think about the mechanical and data movement delays involved in reading from a disk.
Disk access time is made up of seek time (moving the arm), rotational latency (waiting for the sector to rotate under the head), and data transfer time (moving data to memory).
A disk rotates at 7200 revolutions per minute (RPM). What is the average rotational latency in milliseconds?
Average rotational latency is half the time for one full rotation.
One rotation time = 60 seconds / 7200 = 0.00833 seconds = 8.33 ms. Average latency is half of that = 4.17 ms.
Which statement best explains why SSDs generally have faster access times than HDDs?
Think about the mechanical differences between SSDs and HDDs.
SSDs use flash memory with no moving parts, so they do not have seek time or rotational latency, making access faster than HDDs which rely on mechanical movement.
Consider a disk scheduling algorithm that minimizes seek time by reordering requests. Which of the following is a likely effect of this algorithm on overall disk access time?
Think about trade-offs when reordering disk requests to reduce arm movement.
Disk scheduling algorithms like SSTF reduce average seek time by reordering requests, but some requests may wait longer, increasing their individual wait times.