I am learning java (or should I say, filling in the holes) from a reputable learning source (say no more) it said, if fact I am going to feed it back to source I made my purchase from, they said
saying that the number might be choppedCode :int myInt; long myLong = 123987654321L; myInt = (int) (myLong);
I thought why not give it a go, to find myInt comes out to be -566397263
Well one thing I learnt, never trust down type casting.

