Problem Statement
What is the key difference between state and props in React Native?
Explanation
Props are inputs passed to components, similar to function arguments. They are read-only. State is local data managed within the component and can change over time, causing re-renders.