edited by
1,012 views
0 votes
0 votes

edited by

3 Answers

Best answer
2 votes
2 votes

Optimal page size=√(2*S*E)

where S=process size and E= Table entry size

so for given instance S=32MB=2^25 Byte

E=4B=2^2

so optimal size=√(2*(2^25)*(2^2)

=2^14

=2^4 KB

=16KB

so 16 should be ans.

 

selected by
1 votes
1 votes
page size=p bytes

pte=e bytes     s=process size

overheads=p/2 + (s/p)* e

for minimal overhead   d(overhead)/d(p)=0  

p^2=2se=2*2^25*4=2^28    so p=2^14B=16KB
1 votes
1 votes
Given, Process size =32 MB = 2^25 B

PTE= 4 B = 2^2 B.

For minimizing total overload due to page table and internal fragmentation

Page size >= Page table size.

Let page size be p

We know that, Page table size= no. Of pages * PTE

So, p >= (2^25)/p * 2^2 B

p^2 >= 2^27 B

p >= 2^(27/2) B

So, p min will be 2^14 B = 16 KB

Related questions

1.8k
views
2 answers
2 votes
balraj_allam asked Dec 6, 2018
1,802 views
Consider a paging scheme, in which average process size is 32MB and each page table entry size is 4B. The optimal size of page to minimize the total overload due to page table and internal fragmentation is _______KB.
393
views
0 answers
2 votes
DebRC asked Sep 14, 2022
393 views
Considering a system with Single-Level page table, with a TLB to reduce the access time of pages. A cache is also provided with the main memory. All the pages ultimately ... . But if this is true, why can't we store Page Table in a Cache?
805
views
0 answers
1 votes
zeeshanmohnavi asked Dec 25, 2018
805 views
Consider five memory partitions of size $100 \text{ KB }, 500 \text{ KB }, 200 \text{ KB }, 450 \text{ KB and } 600 \text{ KB }$ in same order. If ... in sameNone of the above Answer given by ME: Option $(B)$My answer: Option $(D)$
7.7k
views
1 answers
1 votes
jhaanuj2108 asked Aug 14, 2018
7,720 views
Consider five memory partitions of size 100 KB, 500 KB, 200 KB, 450 KB and 600 KB in same order. If sequence of requests for blocks of size 212 KB, 417 KB, ... A) BEST FITB) FIRST FITC) NEXT FITD) BOTH NEXT FIT AND BEST FIT RESULTS IN SAME