answersLogoWhite

0

Dependent variable

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is another name for a input of a function?

Independent variable


Why all variables are declared with in the function?

It is not necessary to to declare variables inside the function in C. If you declare a variable inside a function, the variable becomes local for the function and another variable of same name can be declared in any other function, but you can not use the variable declared in other function. When you declare any variable outside the function body then the variable becomes global and can be used in any function of the program. Note: errno is an example for a variable declared outside any function.


What is another name for responding variable?

Another name for responding variable is dependent variable.


What is another name responding variable?

Another name for responding variable is dependent variable.


What is another name for variability?

Another name for responding variable is dependent variable.


Another name for a dependent variable?

Another name for a dependent variable is also known as a responding variable


What is the name of the value that is the output of the function?

range


What is another name for the dependant variable?

the 'y' variable


What is another name for the x variable?

The independent variable.


How do you access global variable from within the main function when the local variable is of the same name?

When you acess a global variable inside main function you must use the same name, because the variable declared as global can be accessed by any function/procedure on the class where it was defined.


What is another name for the dependent variable in an experiment?

Responding variable


What is a global declaration?

A global declaration of a function or variable is a declaration that is at the global scope of the program, not inside another function. This means that the name will be visible within all functions in the program.