For storing data values used Variables. There are different Java types of variables:
String - stores text, the value should be in double quotes
int - stores integers (whole numbers), without decimals
float - stores floating point numbers, with decimals
char - stores single characters, the value should be in single quotes
boolean - stores values with two states: true or false etc.
Syntax: type variable = value;