Addition
Modulus
Subtraction
Integer division
Answer is Right!
Answer is Wrong!
The correct answer is B. Modulus.
The modulus operator, also called the remainder operator, is a binary operator that returns the remainder of the division of its two operands. For example, the expression 10 % 3 returns 1, because 10 divided by 3 is 3 with a remainder of 1.
The addition, subtraction, and integer division operators do not return the remainder of the division. For example, the expression 10 + 3 is 13, the expression 10 – 3 is 7, and the expression 10 / 3 is 3.
I hope this helps!