C-16-Q116mediumsingle_mcq
If the if condition is false, control:
If the if condition is false, control:
- aenters the body of the if
- bdoes NOT enter the body of the if; subsequent statements are processed instead
- cgoes back to the start of the program
- draises an error
ব্যাখ্যা
A false condition causes Python to skip the indented body entirely and continue with whatever statements come after the if block. No error is raised — control simply moves past the skipped block.