What is "state" in a UI component?
- aConfiguration values that are hard-coded once and can never change while the app runs
- bData a component holds over time that can change and drive what the UI shows✓
- cThe static HTML structure the browser parses before any scripting has run
- dStyling rules that determine how the component looks on the screen
Explanation:State is the changing data a component owns; when it changes, the UI is expected to update to reflect it. Hard-coded constants (a) never change, so they are not state, and styling rules (d) describe appearance rather than the data behind the view.