asked 143k views
1 vote
If the divisor is 40 what is the least three digit dividend that would give a remainder of 4

asked
User PhamMinh
by
8.0k points

1 Answer

3 votes
124, i worked this out in python using this code:
for i in range(100,999):
if (i%40==4):
print (i)
break
else:
pass

answered
User Tbl
by
7.5k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.