1/10
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Loop
Used to execute instructions repeatedly based on conditions.
Java For Loop
Iterates a program section multiple times with fixed iterations.
Initialization
Initial condition executed once at loop start.
Condition
Tested each iteration to continue loop execution.
Increment/Decrement
Changes variable value in each iteration.
Nested For Loop
Loop inside another loop, executing inner loop with outer loop.
For-each Loop
Traverses array or collection elements without index handling.
Infinite For Loop
A loop without a defined end, can be labeled for control.
While Loop
Iterates code block based on a true condition.
Do-While Loop
Executes code block at least once, then based on condition.
Loop Pattern
Creating a repetitive structure in programming.