In Java what is the maximum number in the mantissa part that can be stored?
In this link below http://steve.hollasch.net/cgindex/coding/ieeefloat.html
The mantissa is 23 bits in a float, but the stored value is normalized, meaning that there's an implied leading 1 followed by a decimal point. This takes it to 24 effective bits.
float