Answer:
C) The statement or block following the else is executed
Step-by-step explanation:
An if... else statement in computer programming languages uses boolean expressions that evaluate to true or false which is denoted by 1 or 0. A statement which evaluates to true such as" x=1" declaration and "if x==1"is a conditional statement that will have it's block executed and if false(not the example) will execute the" else" statement which is an alternative if the "if" boolean evaluates to false.