Report Bug
Qus : elif can be considered to be abbreviation of
Quselif किसका संक्षिप्त रूप माना जा सकता है

A. nested if
B. if..else
C. else if
D. if..elif


Solution
C. else if



Explanation
<p>The keyword elif in Python can be considered to be an abbreviation of: elif</p><ul><li>In Python, elif is used to check multiple conditions after an initial if.</li><li>It stands for "else if", and helps avoid deeply nested if-else blocks.</li></ul>



Report Bug