Q. What is the result of `5 // 2` in Python?
β
Correct Answer: (A)
2
Explanation: `//` is floor division which returns the integer part of division.