The Cmp, And and Or functions perform bitwise logical operations and therefore appear more meaningful if the Base is set to Hex, Oct or Bin rather than Dec. In the following examples Base is set to Bin.
101 Cmp gives 111...111010
101 And 110 = gives 100
101 Or 110 = gives 111
101 Inv Or 110 = gives 11