Respuesta :

Answer:

The answer is "if-else conditional statement".

Explanation:

In the programming language to check any condition, we use conditional statements. There are several types of conditional statement but in this question, we use if-else conditional statements.

Syntax:

//define variable A,B and assign a value that is 10,12.

If(A>B)

{

//when the value of A is greater then value B this statement will execute.

}

else

{

//print B variable value

}

This statement executes in both terms. if the condition is true so if the block is executed otherwise else part is executed. In other words, we can say that the if block is used for true condition and else is used for false condition.