You can declare multiple variables by
int x=1 , y=2, z =3;
You can assign the same value to multiple variables like
int x, y, z;
x, y, z = 50;
What are identifiers
These are variable names
The byte data type stores
Whole numbers from -128 to 127
The short data type stores
Whole numbers from -32,768 to 32,767
The double data type stores
Fractional numbers. It’s sufficient for storing 15 decimal digits
Wrapper classes include
Byte byte, Short short, Integer int, Long long, Float float, Double double, Boolean boolean, Character char
To get the value of a wrapper object, you can simply append the primitive type declaration with
Value() eg intValue()