Session 1: Introduction to LLD

Original Session

Date: 23 Mar 2025

LLD Agenda

  1. LLD - System Design Umbrela
  1. OOPs - Pillars / Principles
  1. Class/Objects -
  1. SOLID Principles.
  1. DRY / KISS
  1. Design Patterns - solution of common problems in programming.
  1. Diagrams - UML / Activity / Sequence.
  1. Problems - Snake and Ladder, Distributed Queue, Parking Lot.

How things work in PBS

  1. Product Team defines specifications which need to be released in market.
  1. This specification called PRD - Product Requirement Document.
  1. Then we have Engineering Manager, which interacts with Product team over PRD, set alignment between Product and Engineering team.
  1. EM pass this information to Tech Lead / Lead Engineer.
  1. Engineering leadership converts PRD into ERD / DD - Engineering Requirement Document / Design Document. SRS - Software Requirement Specification is kind of ERD.
  1. These documents are converted into Higher Level Design - HLD.
  1. This HLD is provided to software engineers to create Low Level Design - LLD.
  1. LLD contains all the implementation details.
  1. After this there is a Implementation, Unit Test, Integration Test, Rollout and Experiments.
  1. Calculate the Impact metrics.
    1. Daily Active Users
    1. Spent Time.

OOPS

  1. Abstraction
    1. Thumb rule is, if some behavior based on data which user does not need to know, it can be abstracted.
    1. It is also used to abstract out complex business logic.

  1. Encapsulation
    1. So encapsulation is nothing but, holding state of an object after specific event from creation to destruction of object.
    1. It is also called data hiding, because it hold together all ingredients which defines the state.

  1. Inheritance
    1. It is a relationship between two classes.
    1. It inherits non-private properties and behaviors of parent entity.
    1. When child class is instantiated, it creates object of parent class and use it internally.

  1. Polymorphism
    1. Ability to treat the objects of different class as object of same super class.
    1. It enables entity to take different forms.
    1. Compile Time
      1. Overloading
    1. Run Time
      1. Overriding

Design principles

  1. DRY - Don’t Repeat Your Self.
  1. KISS
  1. SOLID

What you should be able to do after these session

  1. Create classes of any single entity.
  1. Identify properties and behavior.
  1. Divide system into classes / entity
    1. Snake and Ladder.
      1. Snake
      1. Ladder
      1. Game
      1. Board
      1. Player
      1. Dice
  1. OOPS.

Notes.

https://miro.com/app/board/uXjVIM9OpJs=/

https://github.com/taqkla/System-Design/tree/main/src