Q. What does the second value returned by useState represent?
β
Correct Answer: (C)
A function to update the state
Explanation: `useState` returns an array with the current state and a function to update it.