SYSTEMS DEVELOPMENT ANALYSIS
APPLICATION DEVELOPMENT PROCESSES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
The Creational Pattern delegates the cloning process to the actual objects being cloned.
|
True
|
|
False
|
|
Either A or B
|
|
None of the above
|
Explanation:
Detailed explanation-1: -The Prototype pattern delegates the cloning process to the actual objects that are being cloned.
Detailed explanation-2: -Explanation. Creational design patterns provide a way to create objects while hiding the creation logic, rather than instantiating objects directly using new opreator.
Detailed explanation-3: -The Prototype Pattern is a common creational design pattern whereby an object is cloned to create new objects. The pattern is traditionally used where creating a new instance of an object would be prohibitive.
Detailed explanation-4: -Prototype Pattern says that cloning of an existing object instead of creating new one and can also be customized as per the requirement.
There is 1 question to complete.