Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
Java
9.4K+ articles
java-basics
334+ articles
Library Management System
9+ articles
Java-Loops
5+ articles
Java-Control-Flow
15 posts
Recent Articles
Popular Articles
Library Management System Using Switch Statement in Java
Last Updated: 23 July 2025
Managing a library is a very difficult task as we need to keep track of lots of things, we need to keep track of all books, how many copies there are and we also need to k...
read more
Java
Java-Control-Flow
Library Management System
Jump Statements in Java
Last Updated: 23 April 2026
In Java, jump statements control the flow of program execution by transferring control to another part of the code. They are mainly used in loops and decision-making struc...
read more
Java
Picked
TrueGeek
TrueGeek-2021
Java-Control-Flow
Java Nested if
Last Updated: 23 July 2025
Nested if in Java refers to having one if statement inside another if statement. If the outer condition is true the inner conditions are checked and executed accordingly. ...
read more
Java
Picked
java-basics
Java-Control-Flow
Fall Through Condition in Java
Last Updated: 23 July 2025
The switch statement is a multi-way branch statement. It provides an easy way to dispatch execution to different parts of code based on the value of the expression. Basica...
read more
Java
Technical Scripter
Picked
Technical Scripter 2020
Java-Control-Flow
Java Continue Statement
Last Updated: 23 July 2025
In Java, the continue statement is used inside the loops such as for, while, and do-while to skip the current iteration and move directly to the next iteration of the loop...
read more
Java
Java-Control-Flow
Enhancements for Switch Statement in Java 13
Last Updated: 13 March 2024
Java 12 improved the traditional switch statement and made it more useful. Java 13 further introduced new features. Before going into the details of new features, let's ha...
read more
Java
Java-Control-Flow
Break Any Outer Nested Loop by Referencing its Name in Java
Last Updated: 23 July 2025
A nested loop is a loop within a loop, an inner loop within the body of an outer one.Working:The first pass of the outer loop triggers the inner loop, which executes to co...
read more
Java
Java-Control-Flow
Break and Continue statement in Java
Last Updated: 06 March 2026
Break and continue are jump statements used to alter the normal flow of loops. They help control loop execution by either terminating the loop early or skipping specific i...
read more
Java
java-basics
Java-Control-Flow
Java if-else Statement
Last Updated: 19 January 2026
The if-else statement in Java is a decision-making tool used to control the program's flow based on conditions. It executes one block of code if a condition is true and an...
read more
Java
java-basics
Java-Control-Flow
Java while Loop
Last Updated: 13 March 2026
Java while loop is a control flow statement used to execute the block of statements repeatedly until the given condition evaluates to false. Once the condition becomes fal...
read more
Java
Java-Control-Flow
Java if-else-if ladder with Examples
Last Updated: 16 January 2026
The if-else-if ladder in Java is a decision-making construct used to evaluate multiple conditions sequentially. It allows a program to execute only one block of code from ...
read more
Java
java-basics
Java-Control-Flow
Java For Loop
Last Updated: 11 March 2026
The for loop in Java is a control flow statement used to execute a block of code repeatedly based on a condition. It is especially useful when the number of iterations is ...
read more
Java
Java-Control-Flow
Java-Loops
Java Break Statement
Last Updated: 12 July 2025
The Break Statement in Java is a control flow statement used to terminate loops and switch cases. As soon as the break statement is encountered from within a loop, the loo...
read more
Java
java-basics
Java-Control-Flow
Unreachable Code Error in Java
Last Updated: 22 October 2020
The Unreachable statements refers to statements that won’t get executed during the execution of the program are called Unreachable Statements. These statements might be un...
read more
Java
Technical Scripter
Programming Language
java-basics
Java-Control-Flow
Switch Statements in Java
Last Updated: 16 May 2026
The switch statement in Java is a multi-way decision statement that executes different blocks of code based on the value of an expression. It provides a cleaner and more r...
read more
Java
Java-Control-Flow