Multiple choice technology architecture

Specify the kind of objects to create using a clone able instance and create new objects by copying this instance

  1. Prototype

  2. Factory method

  3. Abstract factory

  4. Proxy

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

The Prototype pattern specifies object creation by cloning a prototypical instance instead of creating new instances from scratch. It's useful when creating a new object is expensive or complex, and you want to create new objects by copying this prototype and then modifying as needed.