What is Seek Time?

A disk is divided into many circular tracks. Seek Time is defined as the time required by the read/write head to move from one track to another. Example, Consider the following diagram, the read/write head is currently on track 1.

Now, on the next read/write request, we may want to read data from Track 4, in this case, our read/write head will move to Track 4. The time it will take to reach track 4 is the seek time.

Seek Time in OS

Seek Time is one of the key components of Disk Scheduling, Before going to Seek Time, let’s first discuss Disk Scheduling. Disk Scheduling is done by operating systems to schedule I/O requests arriving for the disk. Disk scheduling is also known as I/O Scheduling. Multiple I/O requests may arrive by different processes and only one I/O request can be served at a time by the disk controller. Thus other I/O requests need to wait in the waiting queue and need to be scheduled.

Similar Reads

What is Seek Time?

A disk is divided into many circular tracks. Seek Time is defined as the time required by the read/write head to move from one track to another. Example, Consider the following diagram, the read/write head is currently on track 1....

Important Points Regarding Seek Time

It is the time required by read/write head to move from one track to other. Most disk scheduling only use seek time. It can be reduced if subsequent request belongs to same track or near....

Gate Question

Consider a disk pack with a seek time of 4 milliseconds and rotational speed of 10000 rotations per minute (RPM). It has 600 sectors per track and each sector can store 512 bytes of data. Consider a file stored in the disk. The file contains 2000 sectors. Assume that every sector access necessitates a seek, and the average rotational latency for accessing each sector is half of the time for one complete rotation. The total time (in milliseconds) needed to read the entire file is _________. (A) 14020 (B) 14000 (C) 25030 (D) 15000 [GATE CS 2015]...

Frequently Asked Questions on Seek Time – FAQs

What is seek time in the context of operating systems?...

Contact Us