Multiple choice technology architecture

What pattern is also known as Virtual Constructor?

  1. Abstract Factory

  2. Wrapper

  3. Memento

  4. Factory Method

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

Factory Method is known as Virtual Constructor because it defers object instantiation to subclasses, allowing the client code to work with product interfaces without knowing the concrete classes being instantiated. Abstract Factory creates families of related objects, not individual instances via virtual construction.