KnowledgeBoat Logo

Computer Science

Distinguish between Unary and Binary arithmetic operator

Java Operators

38 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

25 Likes


Related Questions