Concept:Convert a decimal number to binary using repeated division by 2.Explanation:Divide 26 by 2 repeatedly and note each remainder.26÷2=13 remainder 013÷2=6 remainder 16÷2=3 remainder 03÷2=1 remainder 11÷2=0 remainder 1Now read the remainders from bottom to top: 11010.Answer:X=110102, so the correct option is B.