To convert a number from base 10 to base 2 (binary), we need to divide the decimal number by 2 repeatedly until the quotient is zero. Then, we write the remainders in reverse order. Let's convert 3510 to binary using this method: 35 / 2 = 17 remainder 1 17 / 2 = 8 remainder 1 8 / 2 = 4 remainder 0 4 / 2 = 2 remainder 0 2 / 2 = 1 remainder 0 1 / 2 = 0 remainder 1 The remainders, in reverse order, are 100011, which is the binary equivalent of 3510. Therefore, the correct answer is option (C) 100011. Each digit in a binary number represents a power of 2, starting from the rightmost digit, which represents 2^0 = 1. The next digit represents 2^1 = 2, the next represents 2^2 = 4, and so on. To convert a binary number to decimal, we multiply each digit by its corresponding power of 2 and add up the results.