Wednesday, January 2, 2008

Byte Circle

Interesting math operations on byte to illustrate the binary computation


byte x=64;
byte y=3;
byte z= (byte)(x*y);
System.out.print(z);

Output:
if y=1,z -> 64
y=2, z-> -128
y=3, z-> -64
y=4, z -> 0
y=5, z-> 64



Check the following bit circle for more ...

No comments: