Multiple choice Which one is the best example of unary operator? a = a+ 5; a = a - 5; a = ++a; a = a * 5; None of these Reveal answer Fill a bubble to check yourself C Correct answer Explanation Single operand is used for ++ incremental operator.