Definition: is a special value that all variables are considered to have if they have been defined but have not been assigned a value. Null is a reserved word and cannot be used for anything other than to check that a variable does not have an assigned value.
Examples:
if (x == null)

