How to use control statements in Java and their example

There are mainly three categories of control statement in Java as: Selection Statement Iteration Statement Jump statement § Selection Statement: There are two selection statements as: if statement: It is conditional branch statement. It can be used to route program execution through two different paths. Syntax:   if(condition) { statement; […]