Problem Statement
What are side effects in React components?
Explanation
Side effects are operations that affect something outside the component, like data fetching, subscriptions, or manually changing the DOM. These are handled using the useEffect Hook.