Computer Science

Distinguish between Unary and Binary arithmetic operator

Values & Data Types Java

9 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

4 Likes


Related Questions