WBJECA 2025 — Computer PYQ
WBJECA | Computer | 2025which of the following statements is true about paging and fragmentation?
Choose the correct answer:
- A.
Paging suffers from internal fragmentation but not external fragmentation.
(Correct Answer) - B.
Paging suffers from external fragmentation but not internal fragmentation.
- C.
Paging suffers from both internal and external fragmentation.
- D.
Paging does not suffer from any kind of fragmentation.
Paging suffers from internal fragmentation but not external fragmentation.
Explanation
Correct Option: (A) Paging suffers from internal fragmentation but not external fragmentation.
Explanation
In operating systems, paging is a memory management scheme that eliminates the need for contiguous allocation of physical memory.
Internal Fragmentation: This occurs when the memory allocated to a process is slightly larger than the memory requested. In paging, if a process size is not an exact multiple of the page size, the last page allocated will not be completely filled. This wastage is calculated as:
Internal_Fragmentation=Page_Size−(Process_Size(modPage_Size))
Since the last page of a process may have unused space, paging suffers from internal fragmentation.
External Fragmentation: This occurs when there is enough total memory space to satisfy a request, but the available space is not contiguous. Paging eliminates external fragmentation because any free frame can be allocated to any page of a process, meaning physical memory does not need to be contiguous:
Total_Free_Memory=∑Free_Frames
Because the operating system can map any logical page to any available physical frame, external fragmentation is effectively resolved.

