answersLogoWhite

0


Best Answer

A constant expression.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a kind of expression that has no variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What must you do to evaluate a variable expression?

you have to undo what ever's being done to the variable :p


Is 7x an algebraic expression?

If x is a variable, then yes. If x refers to multiplication, then no.


What is a algerbraic expression?

An algebraic expression is a mathematical sentence that includes a variable but does not have an equal sign. for example: 2x is an algebraic expression 2x = 6 is an equation


If structure is arraythen an individual array element can be accessed by writing a variable?

A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.


What is do while loop in VB 6?

Structure: do (while(expression) or until(expression)) . . . loop (while(expression) or until(expression)) This is called a loop in VB and it is used to do something more than one times. It may be used without any of the parameters "while" or "until" but in such case you have to make your code exit of the loop or most likely your program is going to stop responding. The while parameter is used when we want the code in the loop to be executed WHILE the expression is True. Example: variable = variable + 1 The until parameter is used when we want the code in the loop to be executed until the expression gets True. Example: variable = variable + 1