Concept:Convert the octal number to decimal first, then change the decimal number into binary by repeated division by 2.Explanation:Write 478 in expanded form using powers of 8.478=4×81+7×80=4×8+7×1=32+7=3910Now convert 3910 to base 2.Divide 39 by 2 repeatedly and note the remainders.39÷2=19 remainder 119÷2=9 remainder 19÷2=4 remainder 14÷2=2 remainder 02÷2=1 remainder 01÷2=0 remainder 1Write the remainders from the last division to the first.This gives 1001112.Answer:478=1001112Therefore, the correct option is A.