answersLogoWhite

0


Best Answer

A rheostat.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is other name for variable ressitance?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the other name of global variables?

Another name of global variable is "EXTERNAL VARIABLES".


What is the name for a graph of variable X and variable Y?

the name for x variable is indepent name for y variable is depent


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.


Is the independent variable the one that does not change?

No, as the name Variable implies, it can and does change. Since it is 'Independent' its change is not a direct effect of the change of any other Variable. Additionally, the independent variable depends on the dependent variable.


What is the name of the C structure type?

The type is struct. The name can be any valid variable name that is not a keyword or other reserved name.


What is the variable you can change to see how it affects another variable?

The independent variable. If it changes the other variable, then the other variable depends on it and consequently is the "dependent variable".


What is a catergoric variable?

a catergoric variable is a variable that has a name and can be labled


What are the uses of a conductor in high ressitance?

they are used to reduce the resistivity,owing to the fact that the conductor introduces current into the resistance


What is another name for the dependant variable?

the 'y' variable


What is another name for the x variable?

The independent variable.


What is Variable Shadowing in Java?

In Java, there are three kinds of variables: local variables, instance variables, and class variables. Variables have their scopes. Different kinds of variables have different scopes. A variable is shadowed if there is another variable with the same name that is closer in scope. In other words, referring to the variable by name will use the one closest in scope, the one in the outer scope is shadowed.A Local Variable Shadows An Instance VariableInside a class method, when a local variable have the same name as one of the instance variable, the local variable shadows the instance variable inside the method block.