Created by nini798
over 9 years ago
|
||
==
<=
>=
!=
<
>
||
&&
syntax of an if/else statement
Syntax of a switch & case statement
Which 'if' will the 'else' pair up with?
if(statement){
if(statement){
else{
}
}
}
What data types will work with the variable creating a switch?
else statements pair up with:
Optional statements added after an 'if' statement
syntax for a nested 'if' statement
What is this equivalent to?
!(A && B)
What is this equivalent to?
!(A || B)
De Morgan's Law
break statement
default statement
case groups