When physical memory fills up, the operating system must decide which pages to remove to make room for new ones. FIFO (First-In-First-Out) is the simplest page replacement algorithm—it always removes ...
. ├── main.py # Entry point ├── scheduling.py # FCFS vs SJF simulation and plotting ├── paging.py # FIFO vs LRU simulation and plotting ├── fcfs.py # FCFS algorithm ├── sjf.py # SJF algorithm ├── fifo ...