QuestenaPractice that shows what to review next
Question 114

What happens to both 5 / 0 and 5 // 0?

  1. True division returns infinity; floor division returns zero.
  2. Both raise ZeroDivisionError.Correct answer
  3. Only true division raises an exception.
  4. Only floor division raises an exception.

Explanation

True division and floor division both reject a numeric zero divisor by raising ZeroDivisionError. Floor division does not return zero, and true division does not substitute an infinity value.

Continue with this test

Start practice
Question 114: What happens to both 5 / 0 and 5 // 0? · Python Fundamentals · Questena