Q. What is the output of this code?
Code:
x = 5 y = 2 print(x // y)
β
Correct Answer: (B)
2
Explanation: `//` is floor division, which returns the largest integer less than or equal to the result.