17.
What is the purpose of using selectors in Redux?
To create new reducers in the Redux architecture.
To dispatch actions in response to user interactions.
To extract specific data from the Redux store.
To modify the state in the Redux store.
Correct: C
Selectors in Redux are functions that are used to extract specific pieces of data from the Redux store. They provide an abstraction layer between the application and the store, making it easier to access only the data that is needed. By using selectors, we can avoid accessing the store directly and have a centralized and efficient way of accessing the data we need.