Question
Which of the following is a key principle of the SOLID
design principles that focuses on ensuring a class has only one reason to change?Solution
The Single Responsibility Principle (SRP) is one of the core SOLID principles in object-oriented programming. It states that a class should have only one reason to change, meaning it should only be responsible for one aspect of the software’s functionality. This principle promotes high cohesion within a class and low coupling between classes, making the system more modular and easier to maintain. By adhering to SRP, developers can avoid the pitfalls of "God Classes," which handle multiple responsibilities and can lead to code that is difficult to debug, test, or extend. For example, a Report class that both formats and sends reports violates SRP, as changes to formatting or delivery methods would require modifying the same class. By separating these responsibilities into dedicated classes, such as ReportFormatter and ReportSender , the design becomes cleaner and easier to adapt to changes. Following SRP results in smaller, well-defined classes that are easier to understand, test, and maintain. It reduces the risk of introducing bugs when making changes, as a single modification is unlikely to impact unrelated parts of the application. Explanation of Incorrect Options: A) Open/Closed Principle : The Open/Closed Principle states that a class should be open for extension but closed for modification. While it ensures flexibility and stability, it focuses on adding new functionality without altering existing code. It does not emphasize the segregation of responsibilities within a class, making it incorrect in this context. B) Liskov Substitution Principle : The Liskov Substitution Principle ensures that derived classes can be substituted for their base classes without altering the correctness of the program. This principle addresses the behavior of subclasses but does not relate to a class having a single responsibility. C) Interface Segregation Principle : This principle advocates for creating small, specific interfaces instead of large, general ones. It ensures that classes implementing an interface are not burdened with methods they do not use. While important for interface design, it does not directly address the issue of a single reason for a class to change. E) Dependency Inversion Principle : The Dependency Inversion Principle emphasizes depending on abstractions rather than concrete implementations. It promotes flexibility and reduces tight coupling between high-level and low-level modules but does not ensure a single responsibility within a class.
f A and B are independent events with P(A) = 0.6, P(B) = 0.5, then P(AÂ Ï… Â B)) = ?
A man is standing 30 meters away from the foot of a tree. The angle of elevation from his eyes to the top of the tree is 60 degrees. Find the height of ...
In a triangle ABC, the lengths of the medians from A, B, and C are 5 cm, 6 cm, and 7 cm, respectively. What is the area of the triangle?Â
The current age of 'Aman' is 16 years greater than that of 'Bhanu'. In four years, the ratio of their ages will be 5:3. What is t...
The main folder on a storage device is known as
The average of a, b and c is 8 less than d. If the average of a, b, c and d is 42, and the average of b and c is 43. then find the average of (a-6) and ...
If A is a 3 × 3 matrix such that det (2A) = 64, then det A=?
The current age ratio of Q to P is 5:3. If Q is 8 years older than P, determine the ratio of their ages after 8 years.
The average of 20 numbers is 62. If 3 is added to each number, then the new average will be: