2.
What is the main purpose of central state management in Redux?
To provide a visual representation of the application structure.
To handle network requests and API calls.
To manage user authentication and authorization.
To have a single source of truth for the application state.
Correct: D
Central state management in Redux allows for the creation of a single source of truth for the application state. This means that all components have access to the same state, eliminating the need for passing data between components.