Conditional Statements Flashcards
1
Q
If A then B
A
If a-b
2
Q
All c are d
A
If c - d
3
Q
Every e is f
A
If e - f
4
Q
If g then not h
A
If g - /h
Can’t have both; reduces numbers by 1
5
Q
No I are j
A
If I - /j
Can’t have both. Either I or j, or neither.
6
Q
Only k are l
A
If l - k
7
Q
M only if n
A
If m - n
8
Q
The only o are p
A
If o - p
9
Q
No q unless r
A
If /r - /q
10
Q
S unless t
A
If /t - s
Must have at least one t or s. Can have either one or both.
11
Q
No u without v
A
If u - v
12
Q
Without w, no x
A
If x - w
13
Q
Y if but only if z
A
If y - z
14
Q
A if and only if b
A
If a -b
If b - a
15
Q
If c then neither d nor e
A
If c - /d and /e