Q. Which statement is true about state in React?
β
Correct Answer: (C)
State should be immutable
Explanation: State should not be changed directly; it should be updated immutably using setState or state setters.