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...
Redux Ecosystem Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
easy
Redux Ecosystem
When an action is dispatched to a store built with combineReducers({ a: reducerA, b: reducerB }), which reducer(s) receive the action?
A
Only the reducer whose slice the action is 'meant for'
B
Only reducerA, always
C
Both reducerA and reducerB — every slice reducer receives every dispatched action
D
Neither, until a middleware routes it
Check Answer