Primitive type in java
Definition: Any data-type built-into a programing language is called primitive data type. Basic behavior of a primitive data type itself, however, cannot be changed. There are 8 primitive data types in java. They are as follow: 1. byte byte: The byte data type is an 8-bit signed two’s complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive). The byte data type ...