Identify the operator that gets the highest precedence while evaluating the given expression:
a + b % c * d - e
%
Reason — % and * have the highest precedence. Since % appears first in the expression, it takes precedence during evaluation.
*