Paging Replacement Algorithms Exercises

  1. In small groups, prepare a 3-minute explanation about your assigned page replacement algorithm.
    Include:
    1. How the algorithm works
    2. How easy or hard is it to implement
    3. Is the execution fast or slow
    4. What is its page fault performance

    Groups:
    switch( Last digit of your 900-number % 4 ){
        case 0: FIFO; break;
        case 1: Random; break;
        case 2: LRU; break;
        case 3: Clock; break;
    }