9. What are operators ? What is their function ? Give examples of some unary and binary operators.

Operators are tokens that trigger some computation when applied to variables and other objects in an expression.

Unary operators require only one operand. e.g. -a, not b etc.

Binary operators require two operands. e.g. a+b, a%b etc.