Session 1: Introduction to LLD
Original Session
Date: 23 Mar 2025
LLD Agenda
- LLD - System Design Umbrela
- OOPs - Pillars / Principles
- Class/Objects -
- SOLID Principles.
- DRY / KISS
- Design Patterns - solution of common problems in programming.
- Diagrams - UML / Activity / Sequence.
- Problems - Snake and Ladder, Distributed Queue, Parking Lot.
How things work in PBS
- Product Team defines specifications which need to be released in market.
- This specification called PRD - Product Requirement Document.
- Then we have Engineering Manager, which interacts with Product team over PRD, set alignment between Product and Engineering team.
- EM pass this information to Tech Lead / Lead Engineer.
- Engineering leadership converts PRD into ERD / DD - Engineering Requirement Document / Design Document. SRS - Software Requirement Specification is kind of ERD.
- These documents are converted into Higher Level Design - HLD.
- This HLD is provided to software engineers to create Low Level Design - LLD.
- LLD contains all the implementation details.
- After this there is a Implementation, Unit Test, Integration Test, Rollout and Experiments.
- Calculate the Impact metrics.
- Daily Active Users
- Spent Time.
OOPS
- Abstraction
- Thumb rule is, if some behavior based on data which user does not need to know, it can be abstracted.
- It is also used to abstract out complex business logic.
- Encapsulation
- So encapsulation is nothing but, holding state of an object after specific event from creation to destruction of object.
- It is also called data hiding, because it hold together all ingredients which defines the state.
- Inheritance
- It is a relationship between two classes.
- It inherits non-private properties and behaviors of parent entity.
- When child class is instantiated, it creates object of parent class and use it internally.
- Polymorphism
- Ability to treat the objects of different class as object of same super class.
- It enables entity to take different forms.
- Compile Time
- Overloading
- Run Time
- Overriding
Design principles
- DRY - Don’t Repeat Your Self.
- KISS
- SOLID
What you should be able to do after these session
- Create classes of any single entity.
- Identify properties and behavior.
- Divide system into classes / entity
- Snake and Ladder.
- Snake
- Ladder
- Game
- Board
- Player
- Dice
- Snake and Ladder.
- OOPS.
Notes.
https://miro.com/app/board/uXjVIM9OpJs=/
https://github.com/taqkla/System-Design/tree/main/src




