Question
Which design pattern would be most appropriate to ensure
that only one instance of a class exists and provides a global point of access to that instance?ÂSolution
The Singleton Pattern is a design pattern used to restrict a class to only one instance, ensuring that the same instance is globally accessible across the application. This pattern is particularly useful in cases like logging, configuration management, or database connections, where multiple instances could lead to resource conflicts or inefficiencies. The Singleton Pattern is typically implemented by making the class constructor private, defining a static method for instance retrieval, and storing the single instance in a static variable. This setup ensures that the instance is created only once and reused throughout the application, conserving resources and maintaining consistency by providing a unified point of interaction. Option A (Factory Pattern) - The Factory Pattern is focused on creating objects based on input parameters without limiting the number of instances, unlike Singleton, which restricts instantiation. Option C (Observer Pattern) - Observer Pattern establishes a dependency between objects, allowing them to notify others of changes, differing from Singleton’s focus on single-instance enforcement. Option D (Strategy Pattern) - Strategy Pattern is used to select algorithms dynamically at runtime, focusing on behavioral variability rather than instance control. Option E (Decorator Pattern) - The Decorator Pattern enhances objects with additional functionalities dynamically, unrelated to the Singleton goal of limiting instance creation.
- A man purchased a laptop for Rs. 15,000 and a mobile phone for Rs. 10,000. He sold the laptop at a profit of 20% and the mobile phone at a loss of 10%. Fin...
A bought an article at 30% less of the marked price and sold it at 12% more than the marked price. Find the profit earned by him.
- A shopkeeper adds 40% to the cost price of a chair and sells it after offering a 25% discount on the marked price. If the chair is sold for Rs. 2,100, find...
- A dealer sold a furniture item for Rs. 300 after allowing a discount of ‘q%’ on its marked price. If the marked price of the item is Rs. 400, then find...
The average cost price of two items is Rs. 750. The first item is sold at a 15% profit, and the second item is sold at a 20% loss. Given that the combin...
Nikhil purchased a house for Rs. 20,00,000/- and gave it on rent immediately at the rate of Rs. 15,000/- per month. After five months, he sold the house...
Aman bought two guitars, ‘P’ and ‘Q’, with cost prices in the ratio 7:9, and sold them at a loss of 10% and a profit of 30%, respectively. If th...
A person bought an article and sold it at a loss of 20%. If he had bought it at 10% loss and sold it for 74 more, he would have gained 30%. Find the pro...
A and B started a partnership business investing in the ratio of 3 : 8. C joined them after 4 months with an amount equal to 3/4th of B. What was their...
A shopkeeper bought 200 articles at ₹40 each. He sold 120 articles at ₹50 each and the rest at ₹60 each. What is the profit percentage earned by t...