Suppose we have a (tiny) demand-paging system with a page size of 256 bytes. Suppose a process has the following page table:
| Frame | Valid |
|---|---|
| 8 | V |
| 0 | I |
| 6 | V |
| 0 | I |
| 0 | I |
Consider the following page-reference string:
1, 2, 3, 4, 2, 1, 5, 6, 2, 1, 2, 3, 7, 6, 3, 2, 1, 2, 3, 6.
Assuming all frames are initially empty, how many page faults
would occur for the following page replacement algorithms,
assuming one, two, three, four, five, six, or seven frames? (Yes,
you have to do this seven times per algorithm...)
Consider a demand-paging system with the following time-measured utilizations:
| CPU Utilization: | 20% |
| Paging disk: | 97.7% |
| Other I/O devices: | 5% |
You are not required to turn in this homework. Use it instead for practice.