Problem Statement
Which disk scheduling algorithm treats the disk arm like an elevator, servicing requests in one direction until reaching the end then reversing?
Explanation
The SCAN algorithm (sometimes called the elevator algorithm) moves the disk arm in one direction, servicing all requests until it reaches the end, then reverses. This reduces back-and-forth movement and provides better uniform wait times. It is widely referenced in I O scheduling interview questions.
