The if/else if statement is a form of what?

Does someone knows what goes into the blank?

The if/else if statement is actually a form of the ________ if statement.

Form of condition.

if(condition)
{
statement1;
}
else if(condition)
{
statement2;
}
else
{
statement3;
}

Topic archived. No new replies allowed.