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
hard
Node.js
Why is setImmediate described as safer than recursive process.nextTick for 'run this after I/O, but don't starve the loop' use cases?
A
They're identical in behavior
B
setImmediate callbacks run in the check phase as part of the normal loop cycle, rather than draining exhaustively before the loop can proceed at all
C
setImmediate is deprecated
D
setImmediate only works with fs operations
Check Answer