VertitimeX Technologies

Java If-Else.

  • The Java if-else statement tests the condition. It executes the if block if condition is true otherwise else block is executed.
  • Example -
                    if (condition) {
                      // codes in if block
                    }
                    else {
                      // codes in else block
                    }