Multiple choice technology architecture

It is correct from a design point of view to make an object both an Observer and a Subject(Observable) at the same time.

  1. True

  2. False

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

In the Observer design pattern, objects can serve dual roles as both observers and subjects. This allows flexible object communication where an object can both receive notifications and broadcast changes. The design supports complex interaction patterns without violating pattern principles.