Java Control Flow: Boolean Logic, Conditionals, and Iteration Glossary
13 essential terms — because precise language is the foundation of clear thinking in Java Control Flow: Boolean Logic, Conditionals, and Iteration.
Showing 13 of 13 terms
Expression that evaluates to true or false.
Exits the innermost enclosing loop.
Skips to next iteration of the enclosing loop.
Rules for negating compound boolean expressions.
Executes body at least once, checks condition after.
Alternative block when if condition is false.
Counter-controlled loop with init, condition, update.
Executes code block when condition is true.
Combines booleans: && (and), || (or), ! (not).
A loop inside another loop.
Compares values: ==, !=, <, >, <=, >=.
Skipping right operand when result is already determined.
Repeats while condition true. Checks before each iteration.