Recall & Review
beginner
What is the purpose of an
if statement in C#?An
if statement checks a condition and runs a block of code only if that condition is true.Click to reveal answer
beginner
What happens when the condition in an
if statement is false?The code inside the
if block is skipped, and the program continues with the next statement after the if block.Click to reveal answer
beginner
Explain the flow of an
if-else statement.If the
if condition is true, its block runs. If false, the else block runs instead.Click to reveal answer
intermediate
What is the role of
else if in C#?else if lets you check multiple conditions one after another. The first true condition runs its block, and the rest are skipped.Click to reveal answer
intermediate
How does the program decide which block to execute in an
if-else if-else chain?It checks each condition from top to bottom. The first condition that is true runs its block, and the rest are ignored. If none are true, the
else block runs.Click to reveal answer
What happens if the
if condition is false and there is no else block?✗ Incorrect
If the
if condition is false and no else block exists, the program skips the if block and continues with the next statements.In an
if-else if-else chain, how many blocks can run?✗ Incorrect
Only the first block with a true condition runs. The rest are skipped.
Which keyword allows checking multiple conditions in sequence?
✗ Incorrect
else if lets you check multiple conditions one after another.What is the correct syntax to start an
if statement in C#?✗ Incorrect
The correct syntax is
if (condition) { } with parentheses around the condition.What does the program do after finishing an
if block?✗ Incorrect
After an
if block, the program continues with the next statement in order.Describe how an
if-else if-else statement controls the flow of a program.Think about how the program chooses which code to run based on conditions.
You got /4 concepts.
Explain what happens when an
if condition is false and there is no else block.Consider what the program does when the condition is not met and no alternative is given.
You got /3 concepts.