Concept:Convert binary numbers to decimal, perform the division in decimal, then convert the decimal quotient back to binary.Explanation:Binary numbers are converted to decimal by summing each digit multiplied by the appropriate power of 2.For (1110011)2, the expansion is 1×26+1×25+1×24+0×23+0×22+1×21+1×20, which equals 64+32+16+2+1=115.For (10111)2, the expansion is 1×24+0×23+1×22+1×21+1×20, which equals 16+4+2+1=23.Now divide the decimal values: 115÷23=5.Convert 5 back to binary: 5=1×22+0×21+1×20=(101)2.Thus, (1110011)2÷(10111)2=(101)2.Answer:(101)2