Conditional Statements: If - Else Statement September 16, 2020 Java | If - Else Statement: If - else statement is one of the conditional statement. if checks the condition, if condition is true if block executes otherwise else block executes. Syntax: if ( condition ) { // statements... } else { ... Read more