Q. What is the result of `5 // 2` in Python? (A) 2 (B) 2.5 (C) 3 (D) Error ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) 2 Explanation: `//` is floor division which returns the integer part of division.