InterviewSolution
Saved Bookmarks
| 1. |
Why overflow of Datatypes occurs in Java? |
|
Answer» Overflow OCCURS when the VALUE is more than the maximum value of the specified datatype. LET’s say the datatype is LONG. If the value SET is more than the Long.MAX_VALUE, then overflow occurs. |
|