Concept:Binary division can be solved easily by converting the binary numbers to decimal, dividing, then converting back to binary.Explanation:Convert 1101001two to decimal: 1×26+1×25+0×24+1×23+0×22+0×2+1=64+32+8+1=105.Convert 101two to decimal: 1×22+0×2+1=4+1=5.Divide the decimal values: 105÷5=21.Convert 21 back to binary: 21=16+4+1=24+22+20, which gives 10101two.So, 1101001two÷101two=10101two.