Multiple choice technology architecture

This pattern allows decoupling between classes, by passing a request between classes until it is recognized

  1. Adapter Pattern

  2. Observer Pattern

  3. Chain of Responsibility Pattern

  4. Strategy Pattern

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The Chain of Responsibility Pattern decouples sender from receiver by giving more than one object a chance to handle a request. The request passes along the chain until an object handles it, promoting loose coupling between classes.