Multiple choice

Which of the following statements is incorrect about 'Chain of Responsibility' design pattern?

  1. There is less coupling during the request sent to the receiver.

  2. There is a chaining process to manage the request for the objects.

  3. The several linked objects respond to a request or hand it off to the object next in line.

  4. The frequency of chained objects propagates from high to low.

  5. This pattern encapsulates a request as an object.

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

It does not encapsulate the request.