edited by
9,680 views

6 Answers

8 votes
8 votes
fixed partition suffers from external and internal fragmentation both if memory is not continous and variable partition suffers from only external fragmentation
4 votes
4 votes

Internal fragmentation happens when the space allocated to a requesting process is larger than what is required. This happens in the case of fixed partitioning since the partition sizes are not always same as that requested. 

External fragmentation arises when free memory is separated into small blocks and is interspersed by allocated memory. The result is that, although free storage is available, it is effectively unusable because it is divided into pieces that are too small individually to satisfy the demands of the application. The term "external" refers to the fact that the unusable storage is outside the allocated regions. In case of fixed partitioning, the unusable storage present inside the allocated region cannot be claimed to be external fragmentation. But when there are free partitions formed as a result of freeing up space then there can be external fragmentation. To illustrate this consider three free memory partitions of size 10KB in main memory. A memory request for 10KB  fills up the middle partition. Now a request for 20KB would be declined since, we do not have 20KB that can be allocated contiguously even though the space is available as a whole.

edited by
2 votes
2 votes
NO, it may suffers from INTERNAL FRAGMENTATION bt no EXTERNAL FRAGMENTATION in fixed size partitioning.
Ee : PAGING

Related questions

956
views
2 answers
1 votes
legacy asked Nov 26, 2022
956 views
Suppose that a machine has 42-bit virtual addresses and 32-bit physical addresses.{a} How much RAM can the machine support (each byte of RAM must be addressable)?{b} What...
384
views
0 answers
2 votes
DebRC asked Sep 14, 2022
384 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 ...
1.7k
views
3 answers
1 votes
Hirak asked Jun 13, 2019
1,742 views
I have read that paging does not suffer from external fragmentation as the frames and the pages are all of the equal sizes, but when we store a last level page table in a...
845
views
0 answers
1 votes
iarnav asked Aug 24, 2018
845 views
In Galvin 9th edition or even in 8th editionin Chapter 8,topic- 8.1.2 Address BindingIt's given the linkage editor or loader in turn binds the relocatable addresses to a...