C-17-Q133mediumsingle_mcq
In the metres/feet conversion, the use of else (instead of an additional elif) means the program treats:
In the metres/feet conversion, the use of else (instead of an additional elif) means the program treats:
- aAny choice other than 1 as Metres → Feet
- bChoice 0 as exit
- cChoice 2 only as Metres → Feet
- dNegative choices as feet
ব্যাখ্যা
Using else instead of another elif means there is no separate condition for the second option — every input that is not choice 1 falls into the else branch. So any value other than 1 is treated as Metres → Feet.