Memory Paging Example(2)
Memory Paging Example(2)
Consider a system of 2 GB (231 B) of memory with a frame size of 4 KB (212 B) and a process P with a logical
address space of size 250 KB. Assume that the page table allocates frame number K+1,000 to page K of
this process. Answer the following questions showing all steps in your solution.
6. If an entry in the page table consists of a frame number and the offset, what is the size of the
page table for this process in bits?
Page Table Size = (#Bits to represent frame + #Bits to represent offset) * number of pages
= (19 + 12) * 63
= 31 * 63 = 1953 bits