Type of variable
Boolean type: it is store True or false type value
Integer type: it is store int, byte, and short, long type value
Float type: it is store float and double type value
Nullable type: it is store Nullable type value
Decimal type: it is store decimal type value
Example:
double f;
decinal d;
int i, j;
bool b;