Computer Science

Distinguish between Unary arithmetic operator and Binary arithmetic operator

Java Operators

43 Likes

Answer

Unary Arithmetic OperatorBinary Arithmetic Operator
It operates on a single operandIt operates on two operands
Increment (++) and Decrement (--) operators are examples of Unary Arithmetic OperatorsMultiplication (*) and Division (/) are examples of Binary Arithmetic Operators

Answered By

28 Likes


Related Questions