- In SOLID, what does the S stand for? What is meant by a responsibility?
Single Responsibility Principle. Responsibility can be viewed as a reason for a change.
- What SDLC method is built around cycles: Waterfall or Agile?
Agile is built around the concept of the development process being conducted in a collection of cycles.
- Is the decorator pattern a creational or structural pattern?
The decorator pattern is a structural pattern that allows functionality to be divided between classes and is particularly useful to enhance classes at runtime.
- What does pub-sub integration stand for?
Publish-Subscribe is a useful pattern where processes publish messages and other processes subscribe to receive the messages.