Q. What will be the result of `print(5//2)`?
β
Correct Answer: (B)
2
Explanation: `//` is floor division, which returns the largest integer less than or equal to the division result.