Multiple choice technology architecture

Convert the interface of a class into another interface clients expect

  1. Meditator

  2. Template method

  3. Adaptor

  4. Bridge

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

The Adapter pattern converts the interface of a class into another interface clients expect. Option A should be 'Mediator' not 'Meditator' (typo). Template method defines skeleton of algorithm, Bridge separates abstraction from implementation. Adaptor (Adapter) is correct.