answersLogoWhite

0

What is the definition of a variable?

Updated: 10/1/2021
User Avatar

Wiki User

6y ago

Best Answer

operational definition of a manipulated variable

User Avatar

Charlie Schulist

Lvl 10
2y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the definition of a variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the definition of a manipulated variable?

operational definition of a manipulated variable


What is the definition operational definition in science?

describes how to measure a variable or define a term. right out of my science book


What is the definition for a independant variable?

An independent variable is a factor that is changed by the controller of the experiment.


What is the definition for a dependent variable?

an dependent variable is one that you change in an experiment


What is the math definition of variable?

A variable is an unknown number represented by a letter


What is the definition of variable motion?

The definition of variable motion is direction and/or changes in speed. This can refer to anything from walking to driving a car.


Definition of variable motion?

uy7j


What is the variable that represents 5 plus n?

The question should be what is the variable in the following expression? (n + 5) The answer: (n) represents the variable. See: Variable(English definition) then look up the Math/Algebra definition.


Examples of moderating variable?

visithttp:/www.statisticssolutions.com/moderator-variable. it gives good definition of moderator variable


What is variable definition in c language?

variable definition means to declare the variable with its value. for example:- int i=10; this statement is a combination of declaration of integer i and assign its value to it,so it is a definition statement Note: assigning a value is not essential.


How a researcher measures a research variable is what?

Operational definition. :)


What is different between a definition and declaration of a variable?

A declaration and definition of a variable are nearly synonymous, especially as it is found in source code. However, the concepts are separate. The definition of a variable may include variable name, type, scope, operating range, and initial value(s). Program documentation includes only the definition of a variable; not the declaration. It defines the meaning and use of a variable. Whereas the declaration of a variable indicates to the compiler/interpreter that the name should be recognized as a variable. Understand that when the variable declaration is given in source code it may include the definition, though not always. In some languages a variable may be declared and then defined later as to type, operating range, et al.