About 440,000 results
Open links in new tab
  1. Page Replacement Algorithms in Operating Systems

    Sep 10, 2025 · In an operating system that uses paging, a page replacement algorithm is needed when a page fault occurs and no free page frame is available. In this case, one of the existing pages in …

  2. Page Replacement Algorithms: FIFO, LRU, Optimal – Complete Guide

    Aug 27, 2025 · Master page replacement algorithms with detailed explanations of FIFO, LRU, and Optimal algorithms. Includes examples, comparisons, and implementation insights.

  3. Page replacement algorithm - Wikipedia

    In a computer operating system that uses paging for virtual memory management, page replacement algorithms decide which memory pages to page out, sometimes called swap out, or write to disk, …

  4. Page Replacement Algorithms - NamasteDev Blogs

    Jul 31, 2025 · Page replacement algorithms are techniques used by operating systems to manage memory when pages are swapped in and out of physical memory (RAM). When a program requires …

  5. Page Replacement Visualizer

    Through interactive Chart.js visualizations, this webpage illustrates the number of page faults incurred by each algorithm under various scenarios. Users can explore and compare the efficiency of these …

  6. Page Replacement Algorithm Calculator - Algorithm Room

    Effortlessly calculate and simulate Page Replacement Algorithms with our interactive tool. Explore algorithms like FIFO, LRU, Optimal, and more. Ideal for students, developers, and computer science …

  7. Page Replacement Algorithms: FIFO, Optimal, LRU, LFU, and MFU …

    In-depth guide to page replacement algorithms in operating systems, including FIFO, Optimal Page Replacement, Least Recently Used (LRU), Least Frequently Used (LFU), and Most Frequently Used …

  8. What is Page Replacement in OS? | Scaler Topics

    Apr 9, 2024 · The various page replacement algorithms like FIFO, Optimal page replacement, LRU, LIFO, and Random page replacement help the operating system decide which page to replace.

  9. OS Page Replacement Algorithms - Tpoint Tech - Java

    Feb 12, 2025 · Page replacement algorithms are essential additives within the memory management subsystem of operating systems. They determine which memory pages to switch out when a new …

  10. Page Replacement Algorithm

    In this algorithm, we are looking into the future or "predicting." If a page fault occurs, we simply look at the sequence of page references to see which page in the frame will not be used for the longest time.