Concept:Convert the binary number to base 10, then write the result as a mixed number.Explanation:Split 10111.11two into integer part 10111two and fractional part 0.11two.Integer part: 10111two=1×24+0×23+1×22+1×21+1×20=16+0+4+2+1=23Fractional part: 0.11two=1×2−1+1×2−2=21+41=43Therefore, 10111.11two=23+43=2343.Answer:2343 (Option B).