C-17-Q008mediumsingle_mcq
In an if...else construct, when the condition is true, the executed block is the:
In an if...else construct, when the condition is true, the executed block is the:
- aBody of
else - bBody of
if - cStatement just below
if...else - dNone of the blocks
ব্যাখ্যা
When the condition evaluates to true, an if...else runs the block attached to the if. The else block is reserved for the false case and is skipped here.