Bird
0
0
LLDsystem_design~20 mins

Emergency handling in LLD - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Emergency Handling Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Emergency Handling Priorities

In an emergency handling system, which approach best ensures that the most critical emergencies are addressed first?

AHandle emergencies randomly to avoid bias.
BAssign priority levels to emergencies and always handle the highest priority first.
CProcess emergencies in the order they arrive without prioritization.
DHandle only emergencies reported by senior staff.
Attempts:
2 left
💡 Hint

Think about how hospitals triage patients.

Architecture
intermediate
2:00remaining
Designing a Scalable Emergency Notification System

Which architecture best supports sending emergency alerts to millions of users quickly and reliably?

AA distributed message queue with multiple workers sending notifications in parallel.
BSending notifications only during business hours to reduce load.
CUsers polling the server every minute to check for emergencies.
DA single server sending notifications sequentially to each user.
Attempts:
2 left
💡 Hint

Think about how to handle large volumes efficiently.

scaling
advanced
2:00remaining
Estimating Capacity for Emergency Call Handling

Your emergency call center expects 10,000 calls per hour during peak times. Each call takes 3 minutes on average. How many call agents are needed to handle calls without delay?

A500 agents
B50 agents
C200 agents
D1000 agents
Attempts:
2 left
💡 Hint

Calculate total call minutes per hour and divide by agent availability.

tradeoff
advanced
2:00remaining
Choosing Between Synchronous and Asynchronous Emergency Alerts

Which tradeoff is true when choosing asynchronous emergency alerts over synchronous alerts?

AAsynchronous alerts guarantee immediate delivery but use more resources.
BSynchronous alerts are always better for emergency systems.
CSynchronous alerts reduce latency but cannot handle high loads.
DAsynchronous alerts may have slight delays but improve system scalability.
Attempts:
2 left
💡 Hint

Consider how asynchronous processing affects speed and load.

component
expert
2:00remaining
Identifying the Critical Component for Emergency System Reliability

Which component is most critical to ensure no emergency alert is lost in a distributed emergency handling system?

AUser interface for reporting emergencies.
BDatabase storing user profiles.
CPersistent message queue with retry and dead-letter handling.
DLoad balancer distributing requests evenly.
Attempts:
2 left
💡 Hint

Think about message durability and fault tolerance.