The Function Divmodab Where Both A And B Are Integers Is #615
The function divmod(a,b), where both ‘a’ and ‘b’ are integers is evaluated as:
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Built-in Functions - Python Built-in Functions - Quiz No.2.
The function divmod(a,b), where both ‘a’ and ‘b’ are integers is evaluated as:
(a%b, a//b)
(a//b, a%b)
(a//b, a*b)
(a/b, a%b)