nLocal variables are automatic variables created as part of a method execution, used to hold intermediate results needed while the method is active.
nThey are not
initialized by the client. They must be initialized in the method.
nSyntax: type identifier;
n type identifier =
expression;