5.
What is the value of a variable that has been declared but not assigned a value?
undefined
null
NaN
0
Correct: A
When a variable is declared but not assigned a value, its default value is undefined. The undefined value indicates that the variable has not yet been assigned a valid value.