# 🔥 TOP PRODUCTION SCENARIO QUESTIONS (Senior Level)
## 🚨 1. Performance Issues * Your API response time suddenly increased from 200ms to 3 seconds. How will you debug it? * One microservice is slow, but others are fine. How do you isolate the issue? * Database CPU is 100%. What steps will you take? * Application memory usage keeps increasing over time—how will you find root cause? * High GC (Garbage Collection) in .NET app—how do you handle it? --- ## 🔥 2. Production Failures / Downtime * A critical microservice is down in production. What will you do? * How do you design system to handle partial failures? * What happens if Kafka goes down in production? * One dependency service is slow/unavailable—how do you protect your system? * How do you ensure zero-downtime deployment? --- ## 🧠 3. Microservices & Communication Issues * One service is calling another service and causing cascading failure—how will you fix it? * How do you handle synchronous vs asynchronous communication in production? * How do you prevent tight coupling betwe...