141. Which represent an abstraction of many important ideas in mutual exclusion:
Correct answer: (C)
Semaphores
142. A semaphore is a ____________ integer variable upon which two atomic operations wait and signal are defined:
Correct answer: (B)
Non- Negative integer
143. Which operation is executed as soon as a process exits from a critical section:
Correct answer: (B)
Signal
144. CCR stands for:
Correct answer: (A)
Conditional critical region
145. ____________ is a control structure in a high-level programming language:
Correct answer: (D)
CCR
146. The exclusion between processes is ensured by a third semaphore called ____________:
Correct answer: (A)
Mutex
147. ____________ semaphore provides mutual exclusion for accesses to the buffer pool and is initialized to the value:
Correct answer: (A)
Mutex
148. Which processes access and manipulate the shared data concurrently:
Correct answer: (B)
Several processes
149. Which section is basically a sequence of instruction with a clear indication of beginning and end for updating shared variables:
Correct answer: (B)
Critical section
150. In which section only one process is allowed to access the shared variable and all other have to wait:
Correct answer: (A)
Critical section