//I) Consider a disk queue with requests for I/O to blocks on cylinders 98, 183, 41, 122, 14, 124, 65, 67. The head is initially at cylinder number 53 moving towards larger cylinder numbers on its servicing pass. The cylinders are numbered from 0 to 199.//Write an OS program to implement FCFS Disk Scheduling algorithm to calculate the total head movement (in number of cylinders).//Solution:#include<stdio.h>int front,rear;void init(){ front=rear=-1;}void display(int *Q){ int i; for(i=front;i<=rear;i++) printf("\t%d",Q[i]);}void enqueu(int...