2. How is ‘unary + ‘ operator different from ‘+’ operator ? How is ‘unary – ‘ operator different from ‘-‘ operator ?

Unary ‘+’ operator operates on one operand e.g. +a while ‘+’ operator needs two operand e.g. a+b. Same is the case between unary ‘-‘ and ‘ -‘ operator.