18.3k views
2 votes
Fill in the blank to output the quotient of dividing 100 by 42.

a) //
b) ÷
c) mod
d) *

1 Answer

0 votes

Final answer:

The correct answer is a) //. The double divide operator (//) is used in Python to output the quotient of dividing two numbers.

Step-by-step explanation:

The correct answer is a) //. The double divide operator (//) is used in Python to output the quotient of dividing two numbers. In this case, 100 divided by 42 would be 2.38. Therefore, the correct way to output the quotient is 100 // 42.

User Seth Warburton
by
7.6k points