retagged by
3,495 views
1 votes
1 votes

Copying a process from memory to disk to allow space for other processes is called:

  1. Swapping
  2. Demand Paging
  3. Deadlock
  4. Page Fault
retagged by

1 Answer

2 votes
2 votes
The terms “swapping” and “paging” are often used interchangeably, but there is a slight difference: paging copies a block of memory to or from disk, while swapping copies an entire process to or from disk

A
Answer:

Related questions

0 votes
0 votes
1 answer
1
1 votes
1 votes
2 answers
3
admin asked Mar 31, 2020
2,706 views
The degree of multi programming is controlled by:CPU SchedulerLong-term SchedulerContext SwitchingMedium term Scheduler
0 votes
0 votes
1 answer
4
admin asked Mar 31, 2020
6,492 views
Given a class named student, which of the following is a valid constructor declaration for the class?Student student(){}Private final student(){}Student(student s){}Void ...