Q. What is the output of this code?
Code:print(10 % 3)
β
Correct Answer: (B)
1
Explanation: The modulus operator `%` returns the remainder of the division.
print(10 % 3)