Contents

What is main purpose of process synchronization?
a) data protection               
b) data consistency
c) data encryption              
d) none of these

b

Which of the following process can be affecting or be affected by other process?
a) single process  
b) multiple process
c) cooperating process     
d) none of these

c

In which the access takes place when different processes try to access the same data concurrently and the outcome of the execution depends on the specific order, is called…
a) dynamic condition
b) race condition
c) essential condition
d) critical condition

b

What is the king of bug?
a) dynamic condition
b) race condition
c) essential condition
d) critical condition

b

A section of code or collection of operations in which only one process may be executing at a given time is called
a) Critical section              
b) race condition
c) essential section              
d) none of these

a

What are three requirements of good solution to the critical-section problem?
a) mutual exclusion           
b) progress is maintained
c) bounded waiting             
d) all of these

d