Multiple choice technology architecture

What pattern is also known as Handle/Body?

  1. Proxy

  2. Adapter

  3. Abstract Factory

  4. Bridge

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

Bridge pattern is also known as Handle/Body because it separates abstraction (handle) from implementation (body), allowing them to vary independently. This decoupling prevents the permanent binding between abstraction and implementation that occurs with monolithic designs.