Concurrent access to shared data may result in ____________
A. data consistency
B. data insecurity
C. data inconsistency
D. none of the mentioned
查看答案
A situation where several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which access takes place is called ____________
A. data consistency
B. race condition
C. aging
D. starvation
The segment of code in which the process may change common variables, update tables, write into files is known as ____________
A. program
B. critical section
C. non – critical section
D. synchronizing
Which of the following conditions must be satisfied to solve the critical section problem?
A. Mutual Exclusion
B. Progress
C. Bounded Waiting
D. All of the mentioned
Mutual exclusion implies that ____________
A. if a process is executing in its critical section, then no other process must be executing in their critical sections
B. if a process is executing in its critical section, then other processes must be executing in their critical sections
C. if a process is executing in its critical section, then all the resources of the system must be blocked until it finishes execution
D. none of the mentioned