10.
In Redux, what is the function used to send actions to the store?
combineReducers()
subscribe()
dispatch()
getState()
Correct: C
The dispatch() function is used to send actions to the store. It is called with an action object as its argument, and it triggers the execution of the corresponding reducer function to update the state.