answersLogoWhite

0


Best Answer

Simply defining, in an expression like A+B

A is an Operand

B is an Operand

Plus is the Operator in between

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is operand difference between operand and operator?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Does a unary expression consists of only one operand with no operator?

No, a unary expression consists of one operand and one operator


What is the difference between prefix and postfix increment operator in c plus plus?

Both the prefix and the postfix increment operators increment the operand. The difference is what is the value of the expression during the evaluation of the expression. In the prefix form, the value is already incremented. In the postfix form, it is not. int a = 1; int b = ++a; // both a and b are now equal to 2 int a = 1; int b = a++; // a is equal to 2 and b is equal to 1


What is operand in c plus plus?

An operand is the value that is being operated upon by an operator. For instance, the C++ increment operator (++) is a unary operator, which means it has only one operand, the variable that we wish to increment. This in the expression x++, x is the operand. The addition operator (+) is a binary operator and therefore has two operands. Thus in the expression x + y, x and y are the operands.


In Excel the plus sign is an example of an operand in a worksheet formula?

The plus sign is an operator, not an operand. An operand is something that an operator operates on. For example, A3 and 10 are the operands in the following formula and the operator is the plus sign. =A3+10


What are the difference between opcode and operand?

What is difference between oppress code and operend


What does plus plus stand for in computer programming?

++ is an operator that increments the operand. The value of the operand in the expression is incremented first if the ++ is before the operand. The value of the operand in the expression is the same value if the ++ is after the operand.


What is conditional expression operator?

The conditional operator (? :) is a ternary operator (it takes three operands). The conditional operator works as follows:The first operand is implicitly converted to bool. It is evaluated and all side effects are completed before continuing.If the first operand evaluates to true (1), the second operand is evaluated.If the first operand evaluates to false (0), the third operand is evaluated.The result of the conditional operator is the result of whichever operand is evaluated - the second or the third. Only one of the last two operands is evaluated in a conditional expression.


What does of size of operator do?

The sizeof() operator returns the number of bytes allocated to the operand.


What is the difference between operand and opcode?

op code is used as the value of instruction . And operand is address location where the instruction can meet.


What is the difference between the assignment operator and the equals operator?

The quality operator and the assignment operator are binary operators; they have two operands, one on either side of the operator. The equality operator is a Boolean operator which compares the two operands, returning true if they have the same logical state, otherwise false. E.g., x==y returns true if x and y have the same logical state, otherwise false. The operator is commutative, such that x==y is the same as y==x. The assignment operator sets the value of the left operand to that of the right operand, such that they both have the same logical state. After assignment, the left operand is returned. E.g., x=y returns x while y=x returns y. After the assignment, x==y must be true.


What operator is a unary operator as it works with only one operand?

Yes, a unary operator is an operator that only has one operand. Examples of unary operators are negative (-), positive (+), increment (++), decrement (--), address of (&), dereference (*), logical not (!), sizeof, one's complement (~), new, and delete.


What is the use of 'size of' in c programming?

The sizeof operator is used to determine the length of its operand (in bytes). The operand must be a type or an object of a type (a variable). The operator is a constant expression and therefore executes at compile time. As such there is no runtime overhead in repeated use of the sizeof operator.