Posts

Showing posts with the label Character data type

Data types in Java

Image
Next Data types in Java Data types represent the different values to be stored in the variable. There are two forms of Data types in Java Primitive data type Non-primitive data type Data Type Size (in bytes) Range byte 1 -128 to 127 short 2 -32,768 to 32,767 int 4 -2,147,483,648 to 2,147,483,647 long 8 -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 float 4 Approximately ±3.40282347E+38F ...