conditionals
direct behavior of a program
flow charts
help to visualize different outcomes
if statements
if conditions are met, there is a result/action
greater than
>
less than
<
equal to
==
not equal to
!=
and
&&
or
ll
not
!
else statements
what happens if “if” condition fails
else if statements
if first condition fails, but another named condition is met, it can lead to another result (typically contains 3+ sections (“if'“ “else if” “else”)
less than or equal to
<=
greater than or equal to
>=