23.
What is the purpose of the Store in Redux?
The Store is responsible for rendering the UI based on the current state.
The Store acts as a container for all the components in a Redux application.
The Store is used to manage the state and provide a single source of truth for the application.
The Store is used to style React components based on the application state.
Correct: C
The purpose of the Store in Redux is to manage the state of the application and provide a single source of truth. It allows components to access and update the state through the use of actions and reducers. The Store is not responsible for rendering the UI or acting as a container for components.