A variable is a
Reveal answer
Fill a bubble to check yourself
A variable is a
string that varies during program execution
portion of memory to store a determined value
number that is frequently required in a program
fixed value
A variable is a named portion of memory that stores a value that can change during program execution. The key aspects are: 1) It occupies memory space, 2) It holds a value, 3) The value can vary (hence "variable"). Option A is incorrect because variables are not strings themselves - they have names and store values. Option C describes constants, not variables. Option D describes constants/literals, which are fixed values.