393 views
0 votes
0 votes
What will happen when a process terminates?
a) It is removed from all queues
b) It is removed from all, but the job queue
c) Its process control block is de-allocated
d) Its process control block is never de-allocated

Please log in or register to answer this question.

Related questions

2 votes
2 votes
1 answer
1
Shashank Chavan asked Jan 7, 2016
1,243 views
What will happen if time quantum is zero in Round Robin? Is it possible?
2 votes
2 votes
3 answers
3
Laahithyaa VS asked Sep 9, 2023
945 views
. What will be the value returned by the following function, when it is called with 11?recur (int num){if ((num / 2)! = 0 ) return (recur (num/2) *10+num%2);else return 1...