Will an int be 32bit and a long 64bit regardless of whether the system is 32 or 64 bit?
32bit-64bit, int, java, long-integer
Solution
Java is platform independent. So `int` is 32-bits, and `long` is 64-bit.
Problem
In java, is an int guaranteed to always be of 32bit size and a long of 64bit size regardless of whether the architecture is 32 or 64 bit?