What is an operand? What is the relationship between operators & operands?
Answers
Answered by
11
Operand is an Object on which an Operation is performed.
Operands are the objects or variable that we create in our program.
An Operator is a syntactical token(symbol) that requires an action to be taken.
Operators fuse with the operands to build a mathematical statement in the program.
eg:
2 + 3
Here 2&3 are operands, as they are variables on which addition ('+') is performed
'+' is the operator as it represents syntactical token for addition.
;) Hope it helps
Mark brainliest if you find this helpful
Operands are the objects or variable that we create in our program.
An Operator is a syntactical token(symbol) that requires an action to be taken.
Operators fuse with the operands to build a mathematical statement in the program.
eg:
2 + 3
Here 2&3 are operands, as they are variables on which addition ('+') is performed
'+' is the operator as it represents syntactical token for addition.
;) Hope it helps
Mark brainliest if you find this helpful
Answered by
3
Operand:
- Operands referrers to any object, variables, alphabets on which different operations are performed. Operands can be a single variable or a string or can any single character. For example A, X, temp, ab, etc.
- Operators are symbols or special functions that we use with the operands to get any desired mathematical formulas. Example of operators: +, -, * etc. In a code snippet a + b, a and b are two operands and + is the operator.
Learn more about operand
Unary operator typeof returns what if the operand value is null
https://brainly.in/question/11990801
Which operator excepts a left side operand that is or can be converted to a left string?
https://brainly.in/question/11993534
Similar questions