retagged by
3,628 views
1 votes
1 votes

Consider the following statements:
1. Paging suffers from internal fragmentation and segmentation suffers from external fragmentation.
2. FIFO replacement policy ignores locality of reference.
3. The essential content(s) in each entry of page table are both virtual page number and page frame number.
4. There is no problem to use single level page table even if it is large size, because there is no overhead, to maintain large page table.
Which of the above statements are correct?

  • Only 3 and 4
  • Only 2 and 3
  • Only 1 and 4
  • Only 1 and 2
retagged by

1 Answer

2 votes
2 votes

1----- yes the 1st  statement is true 

https://en.wikipedia.org/wiki/Fragmentation_(computing)#External_fragmentation

2---- yes, it ignores the loaclity of reference, it is one of the reasons for belads anamoly .As it doesnot consider any fact it just removes the pages in the order of First In First Out .

3----The essential contents are not  both virtual page number and page frame number , it is only virtual page number.As the page table entry consists of all the virtual page number , but not all virtual page numbers are mapped to page numbers.

4---- If we use a Single level page table, the space of page table of single process will be much larger as the page table must have all the entries, so to reduce space we have multi level page tables

Related questions

1 votes
1 votes
1 answer
1
Rahul Jain25 asked Oct 25, 2016
494 views
Disk cache have cache access not in heiracrchially manner by default?? I am getting 76 as answer
2 votes
2 votes
2 answers
2
4 votes
4 votes
5 answers
3
0 votes
0 votes
1 answer
4
LRU asked Oct 20, 2021
578 views
Consider a disk with a sector size of 512 bytes, 1000 tracks per surface, 25 sectors per track, 5 double-sided platters, and average seek time of 10 msec. The capacity of...