APCSA > Boolean Expresions > Flashcards
if statements
if (condition){}else {}
equal operator (math)
==
equal operator (string)
value1.equals(value2)
not equal
!=
less than
<
less than or equal to
<=
greater than
>
greater than or equal to
> =
logical and
&&
logical or
||
logical not
!