Chat with our AI personalities
The expression for 175 is 175, the expression for 280 is 280! Are you sure you meant "expression"?
IS or is. The S meant semis, or half.
It is a formula with an equal sign * * * * * No. Each side of the equal sign is an expression but the whole is an equation. An expression is a combination of numbers and operators without an equality (or inequality) sign. [Actually, such signs may appear in conditional values, but that is getting seriously pedantic!]
Algorithm means written expression of any data.
A conditional expression means 'do something only if certain conditions are met'. For example, consider this short BASIC program...10 a=020 b=a+130 PRINT b40 GOTO 20Will produce every number unless the break key is pressed. However, changing line 30 to a conditional expression, as in this program...10 a=020 b=a+130 IF b/10=INT (b/10) THEN PRINT b40 GOTO 20Would only display a value every time the condition in line 30 is met. It still adds 1 to b every time it loops round, but would display only the numbers that divide exactly by 10.