ok so we're given an example of " 0xAA && 0x12 = 0x01 ". This I worked out and got the same, all good.
Next example is " !0xAA && 0x12 = 0x00 ". Now I worked this out to be 0x01
which would be 0x01
Am I going wrong somewhere or is the example wrong?
Next example is " !0xAA && 0x12 = 0x00 ". Now I worked this out to be 0x01

Code:
0xAA = 10101010;
!0xAA = 01010101;
0x12 = 00010010;
so 01010101
00010010 &&
00010000
which would be 0x01

Am I going wrong somewhere or is the example wrong?