Statements

A statement is a specific combination of expressions terminated by a semicolon.

The following is an example of a statement comprised of expressions.

z = x + y;

Operationally, in the above statement, values are retrieved from the variables named x and y.

These two values are added together.

The result is stored in (assigned to) the variable named z, replacing whatever value may previously have been contained in that variable.