javaswitchcase

Jump

Jump Statements Jump statements are control statements that transfer execution control from one point to another point in the program,allowing for changes in the flow of execution. There are three Jump statements that are provided in the Java programming language: 1) Break Statement2) Continue Statement3) Return Statement 1) Break Statement :A break statement in Java […]

Jump Read More »

Decision Making

Decision Making Statements Decision-making statements are one of the control flow statements which decide which statement to execute and when. It evaluate the boolean condition and control the execution of the block still the boolean condition provided is true.There are two types of decision-making statements in Java 1) if statement2) switch statement 1) if Statement:

Decision Making Read More »

Scroll to Top