In a nutshell
Reaching data on a spinning disk means moving the read/write head to the right cylinder, and that travel — the seek time — is the slow part. The scheduling policy reorders the pending requests to cut total head movement: FCFS serves them in arrival order, SSTF jumps to the nearest, and SCAN/LOOK sweep across the disk like an elevator. Less head travel means faster service.