Multiple choice If a = -11 & b = -3, what is the value of a % b? -3 -2 2 3 Reveal answer Fill a bubble to check yourself B Correct answer Explanation In C99 and later, the result of the % operator with negative operands follows the sign of the dividend. -11 % -3: -11 = (-3 * 3) + (-2). The remainder is -2.