Simple Student Challenge on Conditional in Java
The four conditional statements in Java are: if, if-else, else-if ladder, and switch. The 'if-else' statement executes different codes based on whether the condition is true or false. The 'switch' statement evaluates an expression and executes the code corresponding to the matching case. The challenge is based on conditions.