24.
What is the role of reducers in Redux?
Reducers are used to define the structure and shape of the state in Redux.
Reducers are responsible for connecting React components to Redux.
Reducers are used to perform asynchronous tasks in Redux.
Reducers are responsible for managing the store's state and handling actions.
Correct: D
Reducers in Redux are pure functions that take the current state and an action as inputs, and return a new state. They are responsible for managing the state of the store and handling actions dispatched by different components in the application.