Computer Science, asked by Harshi666, 1 year ago

Differentiate between an operator and an expression.
{ans accurately}

Answers

Answered by peesayanusha
2

Operator: operator is an symbol which have some specific task.
Eg: a+b
a-b
a×b
a÷b
Here +, -, × and ÷ are called as operators while a+b, a-b, a×b, a÷b are expressions.

Answered by Anonymous
3

Hi,

What is operator?

A symbol denoting an operation.

for example +, -, * etc.


what is expression?

expression means combination of operators or function to produce something and then return it


example c = a + b;

here a + b is an example of expression because we are performing calculation on it using + operator

and trying to store that value in c variable which will be returned by a + b;


Similar questions