FCFS Disk Scheduling Algorithm March 14, 2020 Given an array of disk track numbers and initial head position, our task is to find the total number of seek operations done to access all...Read More
Least Recently Used (LRU) Page Replacement Algorithm March 04, 2020 LRU stands for L east R ecently U sed Algorithm In the least recently used algorithm when a page fault generates, we choose the p...Read More
First In First Out (FIFO) page replacement algorithm March 01, 2020 In an operating system that uses paging for memory management, a page replacement algorithm is needed to decide which page needs to be rep...Read More
FCFS (First Come First Serve) Scheduling Algorithm February 17, 2020 What is First Come First Serve Method? FCFS is an operating system scheduling algorithm that automatically executes queued requests and...Read More