
Operators and Expressions II-55
24. In C language, the notation for ‘not equal to’ is .
(a) = ! (b) != (c) ~! (d) ^!
25. Which of the following operator/s in C have the highest precedence?
(a) Comma operator (b) Arithmetic operators
(c) Logical operators (d) Bitwise operators
26. Which of the following operator in C has the highest precedence?
(a) * (b) + (c) <= (d) ~
27. Which of the following increment and decrement operators respectively in C are valid?
(a) + and – (b) ++ and – – (c) =+ and =– (d) += and –=
28. Which of the following operator requires three operands?
(a) Right shift (>>) (b) Comma (,)
(c) Ternary operator (?:) ...