Multiple choice technology architecture

I make unrelated classes work together.

  1. Data Access Object

  2. Transfer Object

  3. Business Delegate

  4. Adapter

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

The Adapter pattern allows classes with incompatible interfaces to work together by wrapping one object to match another's interface. It converts the interface of a class into another interface clients expect, enabling unrelated classes to collaborate without modifying their source code.