Q. What will `print(10//3)` display? (A) 3.33 (B) 3 (C) 3.0 (D) 4 ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) 3 Explanation: `//` is integer division which returns the floor value.