OPERATORS Words or symbols that cause a program to do some thing to the variables. Arithmetic operator Assignment operator Conditional operator Relational operator Increment/decrement operator Logical operator
AIRTHMATIC operator
ASSIGNMENT operator
INCREMENT & DECREMENT operator
CONDITIONAL / TERNARY operator
Relational operator
Logical operator
Logical operators GENERAL STRUCTURE If( var (condition) && var (condition ) ) do this; (if both conditions are true) ------- ------- e lse d o this;(if either one false) --------