QuestenaPractice that shows what to review next
Question 113

What is the value of -3 // 2?

  1. -2Correct answer
  2. -1
  3. 1
  4. -1.5

Explanation

Floor division chooses the greatest integer no larger than the exact quotient, so -1.5 floors to -2. Truncation toward zero would give -1, but that is not the rule used by this operator.

Continue with this test

Start practice
Question 113: What is the value of -3 // 2? · Python Fundamentals · Questena