Q. When the condition of if statement is false, the flow of code will ___.
β
Correct Answer: (C)
Continue the code after skipping the if block
Explanation: When the condition of if statement is false, the code after the if block will be executed and the if block code is skipped.