MCQOPTIONS
Bookmark
Saved Bookmarks
→
Operating System
→
Process Scheduling Queue in Operating System
→
Operations that can be invoked on a condition vari..
1.
Operations that can be invoked on a condition variable are
A.
wait
B.
signal
C.
Both a and b
D.
continue
Answer» D. continue
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
To enable a process to wait within the monitor __________
A monitor is a module that encapsulates __________
Process synchronization can be done on __________
When high priority task is indirectly preempted by medium priority task effectively inverting the relative priority of the two tasks, the scenario is called __________
Mutual exclusion can be provided by the __________
A semaphore is a shared integer variable __________
If a process is executing in its critical section, then no other processes can be executing in their critical section. What is this condition called?
When several processes access the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place is called ________
In monitor, the local data variables accessible only by
The program follows to use a shared binary semaphore T :Process A int Y; A1: Y = X*2; A2: X = Y; signal(T); Process Bint Z;B1: wait(T);B2: Z = X+1;X = Z;T is set to 0 before either process begins execution and, as before, X is set to 5.Now, how many different values of X are possible after both processes finish executing ?
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply