Q. What will be the output of the following code?
Code:
print(10 % 3)
β
Correct Answer: (B)
1
Explanation: The % operator returns the remainder. 10 % 3 = 1.