answersLogoWhite

0


Best Answer

Dependent variable

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
User Avatar

khalil bentili

Lvl 1
1y ago
Independent variable

Add your answer:

Earn +20 pts
Q: What is another name for the output variable in a function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 responding variable?

Another name for responding variable is dependent variable.


What is another name for 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


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 dependant variable?

the 'y' variable


What is another name for the x variable?

The independent variable.


f(x)=y?

The expression "f(x) = y" represents a mathematical function where the variable x is inputted into the function f, and the result or output of the function is represented by y. In this context, "f" is the name or symbol of the function, "x" is the input variable, and "y" is the output or value of the function when x is used as input. The equation implies that the value of y depends on the value of x according to the rules defined by the function f. For example, if we have a function f(x) = 2x + 3, it means that when we substitute a value for x, the function will multiply that value by 2, add 3 to it, and yield the corresponding value of y. So, "f(x) = y" is a mathematical notation that shows the relationship between the input variable x and the corresponding output y through the function f. For more math content visit my YouTube channel: @Flourishinmath


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.