Concept:A hexadecimal number can be converted to binary by first converting it to decimal, then converting that decimal value to base 2.Explanation:Write 1316 in expanded decimal form.1316=1×161+3×160=16+3=1910.Now convert 1910 to binary using repeated division by 2.19÷2=9 remainder 19÷2=4 remainder 14÷2=2 remainder 02÷2=1 remainder 01÷2=0 remainder 1Reading the remainders from bottom to top gives 100112.As an 8-bit binary number, this is written as 000100112.Answer:Option A: 00010011.