20.5k views
1 vote
The bounded buffer problem is also known as :

a) Readers - Writers problem
b) Dining - Philosophers problem
c) Producer - Consumer problem
d) None of these

1 Answer

0 votes

Final answer:

The bounded buffer problem is also known as the Producer - Consumer problem, which arises in concurrent programming when a limited-size buffer is shared by a producer and consumer thread.

Step-by-step explanation:

The bounded buffer problem is also known as the Producer - Consumer problem. This problem arises in concurrent programming, where there is a limited-size buffer that is shared by two threads: a producer thread that adds data to the buffer and a consumer thread that removes data from the buffer. The goal is to ensure that the producer doesn't add data to the buffer when it's full and that the consumer doesn't remove data from an empty buffer.

\

User Maddin
by
7.3k points