It is paging.
Swapping was an older form of memory management. It was moving from/to secondary storage a whole program at a time, in a scheme known as roll-in/roll-out. Now swapping is a fairly close synonym of paging.
Virtual memory, when not active, is written to a swapping area. The swapping area is often on a designated area of the system HDD (hard drive), or a separate HDD. If faster storage is available, it may also be on a designated semiconductor storage facility such as an SSD, SD or USB flash drive.
explain the logical& physical memory
The memory manager is the program responsible for managing memory allocation and deallocation in an operating system. It keeps track of which memory is available and allocates it to processes based on their needs. It also handles swapping data between main memory and secondary storage when the system runs low on physical memory.
multitasking this answer is wrong. right answer is thrashing.
i am not sure
its a type of memory management technique in which the full utilization of main or physical memory is being done and the process which are idle can be placed in second storage or logical memory and in the time of use it can be placed in main memory from paging .
Swapping means to swap the values of two addresses in main memory.
when there are too many processes available and memory is low, than processor remains busy in swapping in and out the pages from disk in order to overcome it: 1) increase memory 2) reduce multi programming level
1. There is more room in the storage than in the memory. 2. contents are retained in storage when you turn the computer off, whereas the programs or data you put into memory disappear when you shut down the computer. 3. storage is very slow compared to memory, but is more cheaper than memory
A
1. In overlays there is no need for the whole program to reside in main memory .here if say if a program has two functions say f1(50k) and f2(70k) such that they are in mutual exclusion with each other then, the memory of only 70k will be allocated for both the functions and the one that is needed at a particular moment can reside in the main memory . this even saves the memory ,But it is not in case of swapping . here the whole program needs to reside in main memory 2. overlays require careful and time consuming planning while in swapping it is not needed 3. swapping needs to issue system calls for requesting and releasing memory which is not in case of overlays