Podcast
Questions and Answers
Selection statements execute a set of instructions only if a conditional expression is true and skip them if it is ______.
Selection statements execute a set of instructions only if a conditional expression is true and skip them if it is ______.
false
There are ______ selection statements in C.
There are ______ selection statements in C.
two
The syntax of the if statement is: if(conditional expression) { Body of if… } ______ { Body of else… }
The syntax of the if statement is: if(conditional expression) { Body of if… } ______ { Body of else… }
else
The if statement requires the use of ______ around the conditional expression.
The if statement requires the use of ______ around the conditional expression.
Signup and view all the answers
The else part is ______.
The else part is ______.
Signup and view all the answers