DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Node.js Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
Node.js
A team registers only an unhandledRejection handler and assumes their error handling is complete, but users still occasionally see hung requests with no response. What's the most likely gap?
A
unhandledRejection handlers don't work in Node.js
B
The process-level handler logs the failure but can't send a response to the specific request — per-handler try/catch is still missing
C
The server needs to be restarted more often
D
This is unrelated to error handling
Check Answer