What pattern is also known as Handle/Body?
-
Proxy
-
Adapter
-
Abstract Factory
-
Bridge
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.