Therefore, from higher to lower precedence: >> > >= > && > ?: > += which corresponds to C → D → A → E → B.
Quick sanity check
In an expression like x >> 1 >= y && cond ? u : v += 3, the shift happens before the comparison, the comparison before &&, then the conditional ?:, and finally the assignment—consistent with the order above.