Q. Which statement is required to execute a block of code when the condition is false?
β
Correct Answer: (C)
else
Explanation: In the if-else block, the if block is executed when condition is True and else block is executed when condition is false.