Java data types.

Java is a statically typed language. That means all variables should be declared of their type before they can be used. For example String s = “qwerty”; int age = 18; char c = ‘a’; The advantage of doing this is we can identify type mismatch issues during the compile time itself. There are 8 … Continue reading Java data types.