Q. What is the output of `print(5 // 2)`? (A) 2.5 (B) 3 (C) 2 (D) Error ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) 2 Explanation: `//` is floor division. `5 // 2` gives the quotient without decimals, which is `2`.