8.
How many stores can Redux have in a single application?
Five stores
Three stores
Unlimited stores
Only one
Correct: D
Redux is designed to have a single store managing the state of your application. Having multiple stores is generally unnecessary and can lead to more complex code and potential conflicts.