Concept:To convert hexadecimal to binary, replace each hexadecimal digit with its equivalent 4-bit binary nibble.Explanation:The given number is 4B716.It has three hexadecimal digits: 4, B, and 7.Convert each digit individually:416=410=01002B16=1110=10112716=710=01112Combine these nibbles in the same order to get the binary equivalent:0100101101112This matches option B.Answer:010010110111 (Option B)