answersLogoWhite

0

Reading a table, drawing a graph, drawing a diagram, and writing a equation.

User Avatar

Wiki User

10y ago

Still curious? Ask our experts.

Chat with our AI personalities

RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
JudyJudy
Simplicity is my specialty.
Chat with Judy
BeauBeau
You're doing better than you think!
Chat with Beau
More answers

You can do this by substitutions,setting them equal to each other and many more ways.This is a vague answer.

User Avatar

Wiki User

12y ago
User Avatar

Reading a table

User Avatar

Anonymous

4y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What is a useful way of finding the value of a variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is a variable used for in Python?

A variable is used to store information. As an example say you are asking someone for their favorite food, and want to store the answer in a variable called favoriteFood: favoriteFood = input("What is your favorite food?") Now if you print the value of favoriteFood (using print(FavoriteFood)) you will see that it has been saved in that variable. You can store any type in a variable, such as number, a string, or even an object.


What is the function of a variable resister in an electrical circuit?

A variable resistor usually has three terminals, one of which is connected to the 'wiper' by which means its resistance is measured. By using all three terminals, we can control the potential difference in a circuit. When used in this way, we call the variable resistor a 'potentiometer'. By using two of the three terminals, one of which must be connected to the variable wiper, we can control the current passing through circuit. When used in this way, we call the variable resistor a 'rheostat'.


What is the advantage of static character variable?

Static variables exist for the entire duration of the program. Therefore a static character variable is a character that exists for the entire duration the program is running. Regardless of where a static variable is declared and initialised, it is physically instantiated and initialised when the program loads. If the variable has function scope, whatever value is currently assigned to the variable will remain in effect the next time that function is called, but only the function can modify the variable. If the variable has class scope, then the variable exists even if no instances of the class have yet been instantiated, but any and all instances share the variable (it is common to the class, not to any one instance of the class). Static class variables must be initialised outwith the class body and outwith any other function body, but can only be modified by the class members (both static and non-static) and by friends of the class. If the variable has file scope, then the variable is a global variable. Global variables are largely frowned upon as there's no way to control what code can modify the value. Passing local function variables to other functions is the preferred method as this gives much greater control over which code can access and/or modify the value, as well as limiting the lifetime of the variable. To ensure the variable exists throughout a program's lifetime (as per a static variable), instantiate the variable from within the program's entry point.


Why do local variables lose their values between calls to the function in which they are defined?

They are designed to work that way - and it's actually quite useful to have variables that work that way. If you want to keep a value from one method call to the next, you have to use some other way to store the information. For example, you can store information in an object field.


How to convert a string into an integer in javascript?

In C# you can do that in the following way Convert.ToInt32(yourStringHere), for instance Convert.ToInt32("wikianswers"). But not all string can be converted to int type. If it happens compilator will throw the exception converting error which you can handle using structure try { ...//your code } catch (Exception) { ... //your code in the case of the exception }