 |
Java Games: Flashcards, matching, concentration, and word search. |
 |
 |
Chapter 12 Control Structures II Review
|
| A | B |
| For loop | pre-condition and fixed |
| While loop | pre-condition |
| do...while | post-condition |
| nested iteration | one loop inside another |
| || | or logical operator |
| && | and logical operator |
| ! | not logical operator |
| recursion | whenever a function calls itself |
| base case | exit for a recursive function |
| DeMorgan's Law | (A!=B) || (C!=D) => (!((A==B)&&(C==D))) |
|
| |