Q. What is the output of the following code?
Code:
print(5 // 2)
β
Correct Answer: (B)
2
Explanation: // performs floor division, discarding the decimal part. 5 // 2 = 2.