what is operator, operation and operands?
Answers
Answered by
4
Answer:
Operands are the objects that are manipulated and operators are the symbols that represent specific actions. For example, in the expression. 5 + x. xand 5 are operands and + is an operator. All expressions have at least one operand.
Answered by
3
The explanation of operator, operation and operands is given below
Explanation:
- Operator:Operator are those which provides the operation between the two operand .There are many types of operator in the programming language like arithmetic ,bitwise,etc.
- Operation:The operation measures taken to perform a given job. Five basic types of computer operations exist: input, process, output, memory, and monitor.
- Operands:Operands are the value which are used to perform a operation in the programming
Example:
int a,b,c;
a=90;
b=98;
c=a+b; // operation
- a,b,c are operands
- + is operator
- c=a+b is operation
Learn More:
- https://brainly.in/question/6857178
- https://brainly.in/question/5772576
Similar questions