Concept:To convert a decimal number to base 4, divide it repeatedly by 4 and record the remainders. The base 4 digits are the remainders written from the last division to the first.Explanation:Divide 89 by 4 repeatedly.89÷4=22 remainder 122÷4=5 remainder 25÷4=1 remainder 11÷4=0 remainder 1Now read the remainders in reverse order, from the last remainder to the first.The remainders are 1,1,2,1.Therefore, 8910=11214.Answer:11214, which is Option D.