1,033 views
1 votes
1 votes
  1. A computer with an 8 KB page, a 256 MB main memory, and a 64GB virtual address space uses an inverted page table to implement its virtual memory. How big should the hash table(page table) be to ensure a mean hash chain length of less than 1? Assume that the hash table size is a power of two.

The hashed page table works as follows

The virtual page number is hashed into a hash table. The hash table contains a chain of elements hashing to the same location. Each element contains

(1) the virtual page number

(2) the value of the mapped page frame

(3) a pointer to the next element

 

  1. 16384

  2. 32768

  3. 65536

  4. None of these

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
Mrityudoot asked Mar 20
160 views
If Page size = Frame size is always true and offset in Logical address = offset in physical address holdsThen how/why Logical address size can come different than physica...
0 votes
0 votes
1 answer
2
0 votes
0 votes
2 answers
3
Unique_999 asked Aug 17, 2023
324 views
Can Any explain the relationship between The “ Word Size “ and “ Logical Address Space “