Concept:To change a base-10 number into base 2, divide the number repeatedly by 2 and note the remainders.Explanation:Start with 35 and divide by 2, writing the quotient and the remainder.35÷2=17 remainder 117÷2=8 remainder 18÷2=4 remainder 04÷2=2 remainder 02÷2=1 remainder 01÷2=0 remainder 1Now read the remainders from the last division upward to the first division.This gives the binary number 1000112.Answer:3510=1000112Option C is the correct answer.