4.Control Flow Statements
In general, the statements contained within your source files are executed in the order in which they are presented, from the top to the bottom. However, control flow statements disrupt the execution flow by utilizing decision-making, looping, and branching, which allows your program to conditionally execute specific segments of code. In this section, the Java programming language is described in terms of the decision-making statements (if-then, if-then-else, switch), the iteration statements (for, while, do-while), and the branching statements (break, continue, return).