Multiple choice

A storage location containing a value that can change during program execution is referred to as a _______.

  1. constant

  2. character string

  3. variable

  4. number

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

A variable is a named storage location that holds values which can be modified during program execution. Unlike constants, variables allow programs to work with changing data. This fundamental concept enables dynamic programming and data manipulation.