answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How would you obtain the value of a state variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are dependent and independent variable in algebra?

the dependent variable is the y-value. the dependent variable means it relys on another variable for its answer. without the other variable this variable would not exist. the independent variable is the x-value. the independent variable can exist on its own without the dependent variable. i mention x-values and y-values... this is only if you are using an x and y value for your application. there are other applications... like speed... where the dependent variable for speed would be time and the independent variable for speed would be distance. and for acceleration the dependent variable would be speed and the independent variable would be distance.


In mathematics what is a limiting value?

If the value of a function cannot be determined for any value of the independent variable, then, the value the function seems to be approaching would be its limiting value for that particular value of the independent variable.


Is a variable a variable expression?

Yes. A variable by itself, or anything that contains a variable, would be a variable expression (unless the variable cancels out, as in "x - x", which always has the same value).


What is the meaning of dipendent variable?

I hope this helps you out a lot. If you are asking what a dependent variable is, here is your answer: A dependent variable is a variable which would be the output of the experiment. The value of the dependent variable depends on the value of the independent variable. If you are asking what a dependent variable does, here is your answer: A dependent variable shows you the output of the experiment. It shows you the independent variable's function. If you have learned that in Math, you should understand. Source(s): I'm a Science and Math whiz.


Is months of the year a categorical variable?

It depends on how the variable is used. At its simplest, it would be a nominal or categorical value but, if used as part of a time series, it would be an ordinal variable.


Can a variable can hold more than one value at any given moment in time?

A variable can not hold more than one value at any given moment in time. It would have only one. If you wanted more than one value, you would have to make the variable an array.


What does a number and two letters mean in algebra?

Generally speaking, a letter in algebra refers to a variable, that is, it is a placeholder for any specific value that can be used in that equation.In algebra syntax, a number next to a variable, or a variable next to another variable, with no explicit arithmetic symbol between them, mean to multiply the two values.So:2aMeans to multiply the variable value of "a" by two.In your question:2aball values should be multiplied. So, the result would be 2 times the variable value of "a" times the variable value of "b".


What is an upper bound estimate?

Given a value for some variable, it is the maximum value that it could have had wich would have been rounded to the given value.


From what would you be most likely to obtain a copy of your state constitution?

the office of the secretary of State


What is the difference between a variable and a non variable?

A variable changes. It varies. A non variable does not change. It is constant. For example if I write a mathematical expression such as x + 1, then x is a variable. Its value can be whatever value we choose. However 1 is a non variable. Its value is 1 and never changes from 1. In a scientific experiment a variable would be something that you changed from one test to another. A non variable would be something that remained constant from test to test. As a final example: the speed at which light travels in a vaccum is a constant. It is referred to by the letter c which stands for the universal constant. However, the speed at which your car travels is a variable. It changes.


How do you equate a php variable to a javascript variable?

Ideal thing would be to retrieve the value from PHP using AJAX and then assigning it to a java script variable. Thereafter compare it to the java script variable that is already present.


Differences between pass by value pass by reference in java?

pass by value is the technique where a copy of the variable is passed to the method as argument. This value can be modified inside the method but that would not affect the original value. Pass by reference is the technique where the reference to the actual variable is passed to the method as argument. Any changes to this variable would affect and alter the original value. Usually primitive data types are passed by value and objects are passed by reference in java.