What is a VARIABLE, in the AP CSP pseudocode used for the exam?
- **A)** A value that can never be changed once a program starts running
- **B)** A synonym for an algorithm
- **C)** A named location used to store a value that a program can reference and change while it runs
- **D)** A type of loop structure
Variables provide a way to name and store changeable data during a program's execution -- a foundational concept shared across essentially all programming languages and pseudocode systems.