109k views
2 votes
g Points The critical section cannot be executed by more than one process at a time. false true Save Answer Q3.28 Points The code satisfies the progress condition. false true Save Answer Q3.38 Points The code satisfies the bounded waiting condition. false true Save Answer Q3.48 Points No matter how many times this program is run, it will always produce the same output. false true

User Sam Mason
by
4.8k points

1 Answer

3 votes

Answer: Hello your question lacks some details attached below is the missing detail

answer :

a) True , B) False C) True D) True

Step-by-step explanation:

a) True ; The critical section cannot be executed by more than one process at a time

b) False : The code does not satisfy the progress condition, because while loops are same hence no progress

c ) True : The code satisfies the bounded waiting condition, because of the waiting condition of the while loop

d) True : No matter how many times this program is run, it will always produce the same output, this is because of the while loop condition

g Points The critical section cannot be executed by more than one process at a time-example-1
User Timonvlad
by
4.7k points