Concept:Octal fractions can be converted to binary by first changing to decimal, then converting the decimal fraction to binary.Explanation:Write 0.658 using octal place values:0.658=6×8−1+5×8−2=86+645=6448+645=6453=0.82812510Now convert 0.82812510 to binary by multiplying by 2 repeatedly:0.828125×2=1.65625 → carry 10.65625×2=1.3125 → carry 10.3125×2=0.625 → carry 00.625×2=1.25 → carry 10.25×2=0.5 → carry 00.5×2=1.0 → carry 1Reading the carries from top to bottom gives 0.1101012.Answer:0.658=0.1101012Correct option: B. 0.110101