Which creational design pattern separates the construction of a complex object from its representation, allowing the same process to create different representations?
AAbstract Factory Pattern
BBuilder Pattern
CSingleton Pattern
DAdapter Pattern
Explanation
The Builder pattern constructs complex objects step-by-step using a Director and Builder interface.

No Comments