C-17-Q122mediumsingle_mcq
The maximum number of elif branches in a single chain is:
The maximum number of elif branches in a single chain is:
- aExactly 1
- bExactly 2
- cAs many as needed
- d0
ব্যাখ্যা
Python places no limit on the number of elif branches in a chain. You can add as many as the logic requires, each testing a further condition after the initial if.