11.
Actions and states are held together by a function called?
Selectors
Middleware
Dispatchers
Reducers
Correct: D
Reducers are pure functions that take the previous state and an action as arguments, and return the new state. They are responsible for updating the state in response to actions dispatched by the application.