answersLogoWhite

0


Best Answer

Variable

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is used as placeholder for an assigned value in a computer memory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are variables in programming?

In computer programming, variables refer to a particular location in the memory that holds a value. Variables are equivalent to their assigned values.


Can pointer be assigned a value?

A pointer is a variable just like any other, so of course it can be assigned a value. However, being a pointer, the value must be a memory address. If you want to assign a value to that memory address rather than the pointer, you must dereference the pointer.


What is the rightmost value of 0 as a placeholder for 01011010?

22


What is the placeholder used to represent an unknown value?

Varible


What is memory address register?

Whenever anything is stored in the memory of your computer (RAM) it is stored at a specific place. Each specific place in your memory has its address that can be used to tell computer programs to go to those addresses to perform actions on the object stored at that address. It is similar to how you have your house number.


How much RAM is on one module of a computer memory?

Every day this value is changing. :) there is no set value.


What is variabale?

It is spelled variable, and is simply a placeholder. You can assign a value to a variable, which points at the memory base of the value. A variable can be called almost anything, however there are certain things they cannot be named. Read some C programming tutorials for a complete explanation of variables.


What are the benefits of using pointers in PHP?

Pointers hold reference to variable value which is already declared in memory. Say suppose $x = 2; // Here variable is assigned value 2 in memory Now $y = &$x; // This basically points to the variable which is already allocated the value The use of pointers could greatly reduce memory usage if used correctly.


How much more does the ipod weigh for each song?

Downloading a song into an idpod does not make it weigh any more. The song is written into the memory. And computer memory is only a change in the magnetic charge of a small memory byte. The memory chip does not change its physical characteristics. Computer memory is best illustrated by a group of light bulbs. A light bulb is turned ON for a value and turned OFF for another value. The combination of ON and OFF would equate to a number. The light bulbs didn't change weight. The difference with computer memory is that when one is turned "on", then it remains "on" without the requirement for more electric current.


What is contained in the merge field in a data source document?

A placeholder in the main document that marks where a value is inserted from a source.


What is a C variable?

A variable is an entity that may change its value. In a program, the result of the processing statements are stored in the computer's memory.


Which data type assigns values automatically?

None of the data types available in C assigns valur to the variable. Initially all the variables have a garbage value. But when we use calloc() to allocate memory dynamically only then it assigns NULL to the memory block assigned.