answersLogoWhite

0


Best Answer

mathematics

choosing a variable to represent an unknown quantity

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Defining the variable
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is another name for defining a variable?

An unknown


Describe the differences between local and module-level variables?

local Variable A Local variable is a variable whose scope is limited to the Block of the Subroutine defining it. Private Sub Command1_Click Dim a as integer End Sub Module Level Variable A Module Level variable is a variable whose scope is limited to the Form Module defining it. Public Sub Command1_Click Dim a as integer End Sub Global Level Variable A Global Level variable is a variable whose scope can be limited to the entire project defining it. Private Sub Classjnitialize () Dim a As Integer End Sub


Analyze the difference among local module-level and global variables and explain how ActiveX DLLs are created?

Local Variable A Local variable is a variable whose scope is limited to the Block of the Subroutine defining it. Private Sub Command1_Click Dim a as integer End Sub Module Level Variable A Module Level variable is a variable whose scope is limited to the Form Module defining it. Public Sub Command1_Click Dim a as integer End Sub Global Level Variable A Global Level variable is a variable whose scope can be limited to the entire project defining it. Private Sub Class_Initialize () Dim a As Integer End Sub


What is the definition for defining the variable?

choosing a variable to represent one of the unspecified numbers in a problem and using it to write expressions for the other unspecified numbers in the problem.


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 ?>


Defining a variable syntax?

[storage-class] [const] [type modifiers] type name [= inital-value] ;


When defining a variable in visual basic what key word appear at the beignning of the statement?

Dim x as integer = 7


What is a pointer in computer language?

A pointer is a variable whose value is the address to another variable. Pointers are most commonly used to dynamically allocate memory off of the heap instead of defining all of your variables at compile-time.


How do you decide whether the variable frequency drive is compatible with my DC motor or not?

Variable frequency Drive is not compatible with a DC Motor. VFD can be used only with AC motors, where frequency plays a key role in defining the speed of the motor.


What is the difference between Declaration and Assignment?

Declaration is basically defining data type and length and assignment is to assign the value. Below is the declaration -- var a integer /* this means we are declaring a variable a as integer data type */ a= 5 /* this is assignment,we are assigning 5 to variable a */


The most common way to create application-level server variables is by?

Defining them in the Server Explorer's Variables tab is the most common way to create an application level server variable.


How do you write a function with a variable number of input elements in PHP?

When defining your function, do not put any arguments in the definition (e.g. function myFuntion()). Inside the function, you can use func_num_args() and func_get_arg($number) to get the function's arguments.