answersLogoWhite

0


Best Answer

order of operations

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

function.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: A representation using a rule that relates one variable to another is a?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Representation using a rule that relates one variable to another?

a function


What is the representation using a rule that relates one variable to another?

order of operations


What is a representation using a rule that releates one variable to another?

A function.


In pointers what is the use of pointer variable?

Pointer is a variable that stores the address of another variable . So pointer basically stores the address of another variable and size of pointer can be evaluated by using sizeof operator.


What is another term for potentiometer?

A potentiometer and a rheostat are two different applications for a variable resistor.A potentiometer is a variable resistor, connected (using its three terminals) as a variable potential divider.A rheostat is a variable resistor, connected (using two of its three terminals) to adjust current.


What is the problem in the C language when declaring a new variable changes the value of another variable even though you've done nothing with the newly declared variable?

You're most likely using references and another function is changing it.


Can you give me a sentence using representation?

Show me a representation of that.


Write a programme to exchange the content of 2 variables using another variable?

t=x; /* t is the other variable */x=y;y=t;


How do you solve an or problem if a variable is unrestricted in sign?

Solve the problem using the + sign for the variable. Then solve the problem using the - sign for the variable. Report your answer as the answer that you got using + or the answer that you got using -.


Why you are using binary integer representation?

I am not!


What variable do you change when using the scientific method?

The independent variable


How to display a variable in PHP using echo or print statements?

displaying a variable in php using echo statement? <?php $name="ram"; //declaring and defining the variable echo "$name"; //printing the variable using echo command ?>