Problem Statement
How many core principles does Redux follow?
Explanation
Redux follows three fundamental principles: Single source of truth (one store), State is read-only (changes only through actions), and Changes are made with pure functions (reducers). These principles ensure predictability and make debugging easier by maintaining a clear data flow pattern.
