I'm not
SCJP, but I answer you YES
You have to read about Hex (0x...), Octal (0..) and about all bitwise operators.
For Hex, you can represent every digit in binary in 4 bits.
0x67 = 0110 0111
0xBD = 1011 1101
a^b = 1101 1010 = 0Xda = 0xDA
For the octal, you can represent every digit in binary in 3 bits.
128 64 32 16 8 4 2 1
1 1 0 1 1 0 1 0
128+64+16+8+2 = value in base 10.