← Back to subjectsStart lesson →Start lesson →
Beginner
Module 3: Control Flow and Decision Making
Directing the flow of your program's execution using conditional statements and loops to make intelligent decisions.
2 lessonsGuided quizzesProjects & habits
01Duration · 25 minLocked
Conditional Logic: If, Else If, and Else Statements
Learn to execute different blocks of code based on boolean conditions, allowing your program to react dynamically to different situations.
02Duration · 30 minLocked
Iteration: For, While, and Do-While Loops
Learn how to repeat actions using Java's three main loop constructs: `for`, `while`, and `do-while`. Also covers the enhanced `for-each` loop and the `break` and `continue` statements.