answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What are the variables according to function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difination of linear function?

A linear function is any function that graphs to a straight line. What this means mathematically is that the function has either one or two variables with no exponents or powers. If the function has more variables, the variables must be constants or known variables for the function to remain a linear function.


What are independent variables and dependent variables in math?

Independent variables are the input value of a function (usually x) and dependent variables are the output value of the function (usually y).


whose variables are also known as global variables?

The variables which are declared outside the main() function is known as global variables and they can be used anywhere in the program. And, the variables which used declare inside the main() function is known as local variables and they can be used inside the main() function only. Example: #include<stdio.h> #include<conio.h> int x,y; // global variables void main() { int a,b; // Local variables ------------ ---------------------- --------------------- getch(); }


Which variable is not destroyed on exit from the function instead its value is presented and becomes available again when the function is next called These variables are declared as?

Local function variables defined static remain in memory at all times. Such variables are only in scope (accessible) when the function itself is in scope.


What is the lifetime of local variables in a function?

If the variable is local to the function it exists until the function returns.


The set of independent variables of a function is the?

domain


What are the input values of a function called?

variables


What is the relationship between decision variables and the objective function?

In optimization models, the formula for the objective function cell directly references decision variables cells. In complicated cases there may be intermediate calculations, and the logical relation between objective function and decision variables be indirect.


When can we say that a function is a relation?

When it doesn't fulfill the requirements of a function. A function must have EXACTLY ONE value of one of the variables (the "dependent variable") for every value of the other variable or variables (the "independent variable").


When can we say that a relation is a function?

When it doesn't fulfill the requirements of a function. A function must have EXACTLY ONE value of one of the variables (the "dependent variable") for every value of the other variable or variables (the "independent variable").


What is function as equations in two variables?

Straight line equations have two variables in the form of x and y


What actually happens when function get called how the compiler is reading the next instruction after completing that function?

When a function gets called, the processor first stores the address of the calling function in a structure called activisation structure and jumps to the called function. Then it allocates the memory for the local variables and initializes them. Then it does the processing in that function. After that it deallocates the memory allocated for the local variables and returns to the calling function. When a function gets called, the processor first stores the address of the calling function in a structure called activisation structure and jumps to the called function. Then it allocates the memory for the local variables and initializes them. Then it does the processing in that function. After that it deallocates the memory allocated for the local variables and returns to the calling function.