Concept:Convert a decimal number into its base‑8 equivalent.Explanation:910 represents the decimal number 9.To convert to base 8, divide 9 by 8.9÷8=1 with remainder 1.The quotient 1 gives the first (leftmost) digit.The remainder 1 gives the second digit.Hence, 910=118.Comparing with X8, we get X=11.Answer:C. 11