Concept:BCD (Binary-Coded Decimal) represents each decimal digit using its 4-bit binary equivalent.Explanation:Convert each decimal digit of 135 separately into 4-bit binary.110=00012310=00112510=01012Now place the 4-bit groups in the same order as the decimal digits.So, 13510 becomes 000100110101 in BCD.Writing the groups without spaces gives 000100110101.This matches the BCD pattern shown in option C.Hence, the BCD equivalent of 135 is 000100110101.Answer:C. 000100110101