Multiple choice technology programming languages

Which of the following is evaluated first:

  1. &&

  2. ||

  3. !

  4. None of the Above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In C/C++ operator precedence, the unary logical NOT operator (!) has the highest precedence and is evaluated before the binary logical AND (&&) and logical OR (||) operators.