Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 1.02 KB

File metadata and controls

22 lines (14 loc) · 1.02 KB

Program for FCFS Disk Scheduling

solution raw output

FCFS:

FCFS is the simplest of all the Disk Scheduling Algorithms. In FCFS, the requests are addressed in the order they arrive in the disk queue.

Advantages:

  • Every request gets a fair chance
  • No indefinite postponement

Disadvantages:

  • Does not try to optimize seek time
  • May not provide the best possible service

Output

output_img