Test your Redux knowledge with a free interactive quiz — 25 questions with answers and explanations. No signup needed to play.
Question 1/12Score 0
How do you trigger a state change in Redux?
In this round
How do you trigger a state change in Redux?
What is Redux Toolkit (RTK)?
How do you read state from the store in a React component (with react-redux)?
What is Redux "middleware"?
What is the Redux DevTools extension used for?
Why does Redux Toolkit's `createSlice` let you write code that looks like it mutates state (e.g. `state.count += 1`) even though Redux requires immutability?
What is the `Provider` component from react-redux for?
Why must reducers avoid mutating the existing state object directly?
How do you connect a plain (non-hooks) class component to the Redux store?
What does `combineReducers` do?
What does `configureStore` (from Redux Toolkit) set up by default that the older `createStore` didn't?