Concept:Decimal to hexadecimal conversion uses repeated division by 16 and reading remainders in reverse order.Explanation:Divide 1024 by 16.1024÷16=64 with remainder 0.Divide 64 by 16.64÷16=4 with remainder 0.Divide 4 by 16.4÷16=0 with remainder 4.Now write the remainders in reverse order: 0,0,4.This gives the hexadecimal number 40016.Answer:B. 400