Q. What is the output of `print(5 / 2)`? (A) 2.0 (B) 2.5 (C) 2 (D) Error ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) 2.5 Explanation: `/` always performs true division in Python 3, so `5 / 2 = 2.5`.