How does the Flyweight pattern typically handle 'extrinsic state'?
It stores it within the Flyweight object itself.
It eliminates the need for extrinsic state altogether.
It passes it as an argument to methods of the Flyweight object.
It encapsulates extrinsic state within a separate 'Context' object.
In a language like Java, how is object cloning often achieved within the Prototype Pattern?
By using the Object.assign() method.
Object.assign()
By directly copying object properties.
By implementing the Cloneable interface.
Cloneable
By using the spread operator.
spread
Which of these situations is LEAST suitable for applying the Flyweight pattern?
Implementing a particle system with thousands of visually similar particles.
Representing characters in a document editor.
Creating graphical objects for a user interface with varying themes.
Managing a large collection of immutable data points.
Which of these is NOT a common use case for the Flyweight pattern?
Implementing a logging system with different log levels.
Text editors handling character formatting.
Game development for managing large numbers of units or particles.
Representing and rendering a complex 3D model with shared textures.
Which of these scenarios is a good candidate for using the Proxy Pattern?
Creating objects that are only instantiated when actually needed.
Defining a one-to-many dependency between objects.
Iterating over a collection of objects without exposing its structure.
Representing a complex object hierarchy in a simplified manner.
What type of Proxy is used to control access to a resource based on access rights?
Caching Proxy
Remote Proxy
Protection Proxy
Virtual Proxy
How does the Prototype Pattern contribute to code flexibility?
It simplifies the process of unit testing.
It promotes loose coupling by reducing dependencies between classes.
It eliminates the need for inheritance.
It allows you to define new object types at runtime.
In a vending machine simulation using the State Pattern, what would likely be a 'State'?
The price of a product
The act of dispensing a product
The 'Out of Stock' condition
The number of coins inserted
Which aspect of the Proxy Pattern implementation often involves using an interface?
The Proxy dynamically loading the real subject using reflection.
The client only interacting with the Proxy through an abstract factory.
The Proxy serializing and deserializing access to the real subject.
The Proxy and the real subject implementing a common interface.
What is a key advantage of encapsulating state-specific behavior in separate classes in the State Pattern?
It improves code organization and allows for easier addition of new states.
It makes the code more concise and harder to understand.
It reduces the number of classes needed compared to other patterns.
It eliminates the need for interfaces or abstract classes.