Skip to content

Latest commit

 

History

History
6 lines (3 loc) · 544 Bytes

File metadata and controls

6 lines (3 loc) · 544 Bytes

Paging is a memory management scheme that eliminates the need for contiguous allocation of physical memory. This scheme permits the physical address space of a process to be non – contiguous. Paging is used for faster access to data. When a program needs a page, it is available in the main memory(RAM) as the OS copies a certain number of pages from your storage device to main memory. Paging allows the physical address space of a process to be noncontiguous.

For more details:- https://www.geeksforgeeks.org/paging-in-operating-system/