C-17-Q009mediumsingle_mcq
In an if...else construct, when the condition is false, the executed block is the:
In an if...else construct, when the condition is false, the executed block is the:
- aBody of
if - bBody of
else - cThe condition itself
- dThe previous statement
ব্যাখ্যা
When the condition is false, the if body is skipped and control transfers to the else block instead. The else block exists precisely to handle this false case.