1. SDLC Models ๐
Waterfall
Sequential. Req -> Design -> Dev -> Test -> Deploy. Rigid. Hard to go back.
Agile
Iterative. Sprints. Flexible. Customer feedback loop. (Scrum, Kanban).
2. Testing ๐งช
- Unit Testing: Testing individual components/functions in isolation.
- Integration Testing: Testing how modules work together.
- System Testing: Testing the complete, integrated system.
- Acceptance Testing: Does it meet user requirements?
3. Design Patterns ๐จ
Reusable solutions to common problems.
- Creational: Singleton, Factory, Builder. (How objects are created)
- Structural: Adapter, Facade, Proxy. (How objects are composed)
- Behavioral: Observer, Strategy, Command. (How objects communicate)