Multiple choice technology architecture

Separate the construction on a complex object from its representation so that the same construction process can create different representations

  1. Prototype

  2. Builder

  3. Template method

  4. Momento

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

The Builder pattern separates the construction of a complex object from its representation, allowing the same construction process to create different representations. Prototype clones objects, Template method defines algorithm skeleton, and Momento (Memento) captures/restores state.