I heard this is a question asked in an interview, given two bytes, return true if they are symmetric
public boolean isSym(Byte firstByte, Byte secondByte);
01101000 and 00010110 are symmetric, but 01100000 and 11000000 are not. need to write the code in Java. Any ideas what is the best way to do so?