Vidyalelo
Python · Q34

MCQs for Python Data Types and Numeric Types Chapter

Programming · Python · question 34

Q34

What is the result of divmod(10, 3) ?

A.
(3, 1)
Answer
B.
(3, 0)
C.
(3, 3)
D.
(10, 3)

Answer: Option A

Solution

Answer: Option A
Solution:
The divmod() function returns the quotient and remainder of division.