DS160123 Guess the correct answer

Date:- 02/03/2023
The function divmod(a,b), where both ‘a’ and ‘b’ are integers is evaluated as:
[a] (a/b,a%b)
[b] (a//b,a*b)
[c] (a%b,a//b)
[d] (a//b,a%b)

3 Likes

Correct answer is D @sms18680

2 Likes

Correct Answer is D i.e. Division(Quotient) and Modulus(Remainder)

3 Likes