Computer Science, asked by kavitabargatgujar, 10 months ago

the _________ statement allow you to check multiple condition for true
(1) true
(2) elif
(3) else if
(4) .py

Answers

Answered by Agamsen
5

Answer:

(3) is is correct answer of your question

please please please follow me and mark my answer as brainliest this is my request to you

Answered by dreamrob
0

The elif statement allows you to check multiple conditions for true. So the correct answer is option(2).

  • Elif is the short name for else-if.
  • Elif statement allows users to check multiple conditions at the same time and run until a true statement is found.
  • In a general if-else statement, if the condition is false then the function in the else block gets executed but in the elif statement, when the if statement is not true, it checks the condition in elif. The function in the block of elif will only be executed if its condition is true otherwise it will not be executed.
Similar questions