In small groups, prepare a 3-minute explanation about your assigned page replacement algorithm.
Include:
- How the algorithm works
- How easy or hard is it to implement
- Is the execution fast or slow
- 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;
}