Multiple choice technology architecture

This pattern, which groups a complex object hierarchy and provides a new, simpler interface to access those data.

  1. Façade Pattern

  2. Adapter Pattern

  3. Bridge Pattern

  4. Proxy Pattern

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

The Facade pattern provides a simplified interface to a complex subsystem of classes, making it easier to use. It doesn't encapsulate the subsystem but provides a higher-level interface that reduces complexity for clients. Adapter Pattern converts one interface to another, Bridge Pattern separates abstraction from implementation, and Proxy Pattern controls access to an object.