Expressions, Operators and Operands

Expressions are sequences of operators and operands.  Evaluating an expression results in a single value for the entire expression.
Operators are the symbols used in expressions, indicating what operations apply to the operands in the expression.
Operands are the values acted upon by the operators, e.g. literals, results of function calls, other expressions.
There are three kinds of operators:
  • Unary – Takes one operand.  E.g.  x++
  • Binary – Takes two operands.  E.g.  x+y
  • Ternary – Takes three operands (the conditional operator).  E.g.  e ? x : y