answersLogoWhite

0


Best Answer

That is called "assignment".

That is called "assignment".

That is called "assignment".

That is called "assignment".

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

That is called "assignment".

This answer is:
User Avatar

User Avatar

Thembani Terra Rikho...

Lvl 2
2y ago

To initialize

This answer is:
User Avatar
User Avatar

Robbie Blick

Lvl 1
2y ago
good answer tyy!
User Avatar

Jolie Lind

Lvl 1
2y ago
great answer, thanks ?

Add your answer:

Earn +20 pts
Q: What is the process of assigning a value to a variable called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What process involves deciding exactly what is to be measured when assigning value to a variable?

operationalization


Specifying exactly what is to be measured in assigning a value to a variable is called what?

operationalization


How do you store value in a variable?

By assigning a value to it.


What is the input of a variable called in qbasic?

Variables don't have inputs. A variable is a named memory location where a value may be read or written. You write a variable by assigning a value to it. The value may be obtained from user-input.


How do I plug in a variable?

You cannot plug in a variable, what you do is plug in the value for a variable. If you know the value of the variable in an equation (or formula), the process of replacing that variable whenever it appears in the equation by its value is called plugging in the value for the variable.


What is variable initialization in computer programming?

Well, in languages like C or C++, a variable is just a memory cell. The memory cell can contain any, and then I really mean any, value. For instance, if I were to do something like the following:int x;Then I would have no idea what the value of x is, since I did not initialize it. However,int x = 0;initializes the variable to be zero.


Assigning a value to a variable in a declaration statement is called?

Answer is; initialization *** Edit*** Initialization is correct. Page 59 Programming Logic and Design by Tony Gladdis


The process of finding the value of the variable that makes it a true equation is called?

solve


Assigning a value to a variable from a mathematical operation is considered a?

good idea. Example: a= b+c;


What is pointer initialization?

Assigning an initial value to a pointer variable. Example: int *p= NULL;


What is variable definition in c language?

variable definition means to declare the variable with its value. for example:- int i=10; this statement is a combination of declaration of integer i and assign its value to it,so it is a definition statement Note: assigning a value is not essential.


What is the intialization in c?

Initialization is nothing but assigning some value to a parameter. ex :- int a; // Defination of an integer variable a = 3; // Initialization of the variable a