What is the difference between a variable and an identifier?

A variable is a memory location given a name and a data type. Once a variable has been declared its contents may be modified using its name.
An identifier is the name you give a variable. (In the case of Visual Basic and most other languages this needs to start with a letter and can contain numbers or underscores).

CD

Related Computing A Level answers

All answers ▸

Describe a difference between an array and a linked list.


What is the difference between simplex, half duplex and full duplex?


Write a small program, in pseudocode or otherwise, that demonstrates a recursive algorithm. Write a small explanation of how recursion is used in your program.


Describe the difference between passing parameters into a function by reference and by value? Indicating how this may lead to unexpected outputs.