Which of the following is the most accurate description of SOLID principles?
Guidelines that help write more maintainable and scalable software
Tools for automatically generating code
Advanced design patterns for specific software architectures
Strict rules that must be followed in all programming scenarios
How can you identify multiple responsibilities within a class?
By checking if the class name is too long.
By looking for different reasons to change the class in the future.
By counting the number of lines of code in the class.
By observing how many other classes it interacts with.
What is the core idea behind the Interface Segregation Principle (ISP)?
Classes should have only one responsibility.
Clients should not be forced to depend on methods they don't use.
Subclasses should be substitutable for their base classes.
Code should be open for extension but closed for modification.
What is the core idea behind the Single Responsibility Principle (SRP)?
A class should interact with as few other classes as possible.
A class should have only one method.
A class should be as small as possible.
A class should have a single, well-defined responsibility.
Imagine an interface IWorker with methods work() and takeBreak(). You have two classes, Robot and Human, both implementing IWorker. How would you refactor this to better align with the ISP?
IWorker
work()
takeBreak()
Robot
Human
Make takeBreak() an abstract method within IWorker so only Human has to implement it.
Keep the IWorker interface as is, as both classes can perform both actions.
Create two separate interfaces: IWorkable with work(), and IRest with takeBreak(). Implement them accordingly.
IWorkable
IRest
Have Robot implement IWorker, but leave Human without an interface.
Why might strictly adhering to the Open/Closed Principle in every single part of a codebase be impractical?
It simplifies the design too much.
It violates other SOLID principles.
It makes the codebase less secure.
It can lead to over-engineering and unnecessary complexity in some cases.
What is a potential drawback of NOT following SRP?
Classes become more reusable and easier to understand.
Changes in one part of the code are less likely to affect other parts.
Classes become more focused and have a clearer purpose.
The codebase becomes more difficult to maintain and prone to bugs.
What is a key benefit of having high-level modules depend on abstractions?
It improves code readability.
It reduces the number of lines of code.
It makes the high-level module reusable with different implementations.
It simplifies the low-level modules.
Which of these is a benefit of adhering to the Single Responsibility Principle?
Tighter coupling between classes for better collaboration.
More complex class design for handling multiple tasks.
Reduced code duplication and improved reusability.
Increased class size for better code organization.
In a layered application, which layer typically contains the high-level modules according to DIP?
Data Access Layer
Business Logic Layer
Presentation Layer
Database Layer