- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
8 Cards in this Set
- Front
- Back
|
Definite loop
|
A loop that executes a specific number of times.
|
|
do...while loop
|
A Java post-test looping structure.
|
|
for loop
|
A pre-test loop that uses shorthand notation to combine multiple statements into one line of code.
|
|
Indefinite loop
|
A loop whose final number of loops is unknown at development time.
|
|
Loop control variable
|
A variable whose value determines whether the loop execution continues.
|
|
Nested loops
|
The act of placing one looping structure inside another.
|
|
Postfix operator
|
A unary operator that is placed after a variable that will eval.
|
|
Prefix operator
|
A unary operator that is placed before a variable that will add 1 to the variable and then evaluate it.
|