Answer:
==
Explanation:
Operator precedence, it tells about the flow of operator execution o which operator execute first and which execute last.
'==' > '&&' > '||' > '='
According to precedence table,
the equal equal operator '==' comes first. so, it execute first and then NOT operator, then OR operator and finally equal operator.