The place where a variable can be used is called its
Answers
Answer:
Variables. The variable's name represents what information the variable contains. They are called variables because the represented information can change but the operations on the variable remain the same.
Explanation:
he most simple form of storage is called a variable. It's an area of memory that stores one item of data, such as a number or a character. They have two purposes - the programmer is able to choose the names of the variables, making programming easier, and also, you can write programs or functions that will work with any values. If you're familiar with spreadsheets already, you can think of variables as being like the cells, which you can then use in formulae regardless of the values they contain. All procedural programming languages, such as C, BASIC and Pascal, have variables, although they may support different types and let you manipulate them in different ways.
Some languages are strongly typed (see below), whereas others aren't typed at all. Some require that you declare a variable before you use it, and others let you go straight in and define a variable's value without declaring it first.
Declaring a variable gives the variable a name, and, in most programming languages, gives it a type - in effect it creates the container that stores your value. See the Type section for examples of declarations.
When you define a variable, you are simply giving it a value.
Here is your answer
Variables are used in C++ where you will need to store any type if values within a programme and whoes value can be changed during the execution
variables are the name of the memory locations that are allocated by copaliers