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...
React Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
easy
React
Two components on the same page call useQuery with the identical query key at nearly the same time. What happens?
A
Two separate network requests fire, one per component
B
The requests are deduplicated into a single network call, with both components sharing the same cached result
C
Only the first component's request succeeds; the second is silently dropped
D
This throws a duplicate-key error
Check Answer