Computer Science, asked by umendrakumar2001, 18 days ago

(a)Explain Operator and Expressions with suitable Example?​

Answers

Answered by saivinay2008
0

Answer:

An operator and any of its operands taken together constitute an expression. Such expressions produce a result that is the effect of the operator on the operand(s). They are classified based on the types of operators they contain.

Explanation:

Operator                         Description                             Example

+                         Adds two operands.                  A + B = 30

−       Subtracts second operand from the first.     A − B = -10

*                       Multiplies both operands.           A * B = 200

/             Divides numerator by de-numerator.       B / A = 2

%Modulus Operator and remainder of after an integer division. B % A = 0

++ Increment operator increases the integer value by one. A++ = 11

-- Decrement operator decreases the integer value by one. A-- = 9

Similar questions