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.
How many pairs of letters are there in the word âSAMPLINGâ which has as many letters between them in the word as in the English alphabetical series?...
If all the digits of the number 389755323 are arranged in increasing order, then sum of 5 th and 6 th digits (from the left end) of the number thus form...
If the consonants of the following words are arranged first, followed by the vowels as per the English alphabetical order and then the consonants are ch...
Five words are given in the options and taking four letters of each of the words as specified in front of it (in the same order). Different words can be...
If it is possible to make a meaningful English word from the 2nd, 5th, 6th and 10th letter of the word âIN...
In the given number â267453717â if â2â is added to each odd number and â1â is subtracted to each even number then how many digits are not r...
If in the word âINCREAMENTâ all vowels are replaced with the preceding letter and all the consonant are replaced with the succeeding letter accordin...
How many pairs of letters are there in the word âREPLENISH, which has as many letters between them (both forward and backward) in the word as in the ...
If we increase each even digit by 1 and decrease each odd digit by 1 in the number "8753652846" and then arrange all the digits in ascending order, then...
Each vowel in the word 'VARIABLE' is changed to the following letter in the English alphabetical order and each consonant is changed to the preceding le...