Consider a system where the virtual memory page size is 2K (2048 bytes), and main memory consists of 4 page frames. Now consider a process which requires 8 pages of storage. At some point during its execution, the page table is as shown below:
Virtual page | Valid | Physical page |
0 | No | |
1 | No | |
2 | Yes | 1 |
3 | No | |
4 | Yes | 3 |
5 | No | |
6 | Yes | 0 |
7 | Yes | 2 |
Answer the following questions:
(1) List the virtual address ranges for each virtual page.