In chapter 2 you will learn how numbers are represented by computers in base-2 (also called binary).
For example, when the number 1234 is stored in a 16-bit register, the individual bits in a the register are
0000 0100 1101 0010
The bits are numbered starting with 0 on the right. The left-most 1 bit in this particular number is bit 10, and it contributes 2
10 = 1024 to the number's value.
Buses are always treated as if they were carrying numbers, so their wires are numbered the same was a bits. This is why when sel=100 (binary), the individual wires are sel[2]=1, sel[1]=0 and sel[0]=0.
--Mark