answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the value added to an accumulator variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is accumulator in digital logic?

It is a variable or a component of a variable.


Which register is used as a local variable?

accumulator


Is it necessary to initialize accumulator variables?

If it isn't, then you don't know for sure what value it will start at in some languages. Thus, your count will be wildly inaccurate. In other languages, it will just generate an error if you forget to initialize. Two steps: 1. It is critical that variables be properly initialized. 2. Counter-variables are variables.


What is accumulator function in c language?

Normally the return value from the function is through the information from the accumulator.


What should be added to both sides of this equation to solve for the variable a plus 39 equals -60?

-21


How you can modify an integer variable value in a function?

with an assignment: variable = value variable += value variable /= -3; ...


Variable is the value whose value depends upon the value of the independent variable?

The dependent variable is the variable that depends on the independent variable.


How do you calculate value added per employee?

VAPCO = sales-variable cost/total employee cost.


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 a variable expression that has a decreasing value as the value of the variable increases?

what is a variable expression that has a decreasing value as the value of thevariable increases?


What is independent a dependent variables?

The independent variable is the variable that is altered by the scientist, and the dependent variable's value is dependent on the value of the independent variable.


How do you increase added value?

Assuming your variable is as follows: Dim intHolder as Integer The following two will increment the value by 1 intHolder = intHolder + 1 or intHolder += 1