14.
In Redux, the single global object that manages the application's state is called?
State Tree
Reducer Store
Action Container
Main directory
Correct: A
Redux manages the application's state with a single global object called the State Tree. It is a JavaScript object that holds the entire state of the application and allows for easy access and manipulation of the state through actions and reducers.