retagged by
2,734 views
1 votes
1 votes

The degree of multi programming is controlled by:

  1. CPU Scheduler
  2. Long-term Scheduler
  3. Context Switching
  4. Medium term Scheduler
retagged by

2 Answers

0 votes
0 votes

It is also called a job scheduler. A long-term scheduler determines which programs are admitted to the system for processing. It selects processes from the queue and loads them into memory for execution. Process loads into the memory for CPU scheduling.

It also controls the degree of multiprogramming. If the degree of multiprogramming is stable, then the average rate of process creation must be equal to the average departure rate of processes leaving the system.

0 votes
0 votes
Long term scheduler loads newly created processes into main memory. Number of processes in the main memory refers to the degree of multi programming. Hence, Degree of multi programming is controlled by long term scheduler.
Answer:

Related questions

0 votes
0 votes
1 answer
1
1 votes
1 votes
1 answer
3
admin asked Mar 31, 2020
3,507 views
Copying a process from memory to disk to allow space for other processes is called:SwappingDemand PagingDeadlockPage Fault
0 votes
0 votes
1 answer
4
admin asked Mar 31, 2020
6,519 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 ...