Q. What is the key difference between props and state in React?
β
Correct Answer: (C)
Props are passed, state is managed internally
Explanation: Props are passed from parent to child, state is managed within a component.