is used to test the condition. It checks boolean
condition: true or false
if statement
The Java if statement tests the condition. It executes the _____ if condition is true.
if block
The _________ also tests the condition. It executes the if block if condition is true otherwise else block is executed.
if-else statement
The ___________ executes one condition from multiple statements
if-else-if ladder statement
The ___________ represents the if block within another if block. Here, the inner if block condition executes only when outer if block condition is true
nested if statement