Describe World : Play with bits in byte

Play with bits in byte

No. to 76543210 Number to use:
0 => 00000000
1 => 00000001
2 => 00000010
3 => 00000011
4 => 00000100
5 => 00000101
6 => 00000110
7 => 00000111
8 => 00001000
9 => 00001001
10 => 00001010
11 => 00001011
12 => 00001100
13 => 00001101
14 => 00001110
15 => 00001111
16 => 00010000
17 => 00010001
18 => 00010010
19 => 00010011
20 => 00010100
21 => 00010101
22 => 00010110
23 => 00010111
24 => 00011000
25 => 00011001
26 => 00011010
27 => 00011011
28 => 00011100
Bit as a switch:
 
And
Selected byte:00000011
Test byte:00001010
Result AND:00000010
Or
Selected byte:00000011
Test byte:00001010
Result OR:00001011
XOr
Selected byte:00000011
Test byte:00001010
Result OR:00001001
Test
Byte set(Value: 255):11111111
Byte re-set by(Value: 110):01101110
Test Live
Selected byte(Value: 3):00000011
Switch bit (Value: 2):00000111