System design इंटरव्यू बड़े पैमाने के सिस्टम डिजाइन करने की आपकी क्षमता को आँकते हैं — ये mid/senior रोल के लिए सामान्य हैं। सफलता में एक संरचित दृष्टिकोण शामिल है: requirements स्पष्ट करना, उच्च स्तर पर डिजाइन करना, विवरण में जाना, और trade-offs व scaling पर चर्चा करना।
एक संरचित दृष्टिकोण
1. CLARIFY requirements → functional (what it does) + non-functional (scale, latency,
availability); ask about scope, users, constraints (don't assume — narrow the problem)
2. ESTIMATE scale → users, requests/sec, data volume (informs the design)
3. HIGH-LEVEL design → main components and data flow (API, services, database, cache,
etc.); draw the architecture
4. DEEP DIVE → detail key components; data model; specific challenges
5. SCALE & TRADE-OFFS → identify bottlenecks; discuss scaling (caching, load balancing,
sharding, replication); trade-offs of choices
