For a single if condition, if you want to run one block for a true condition and another block for a false condition, you need the if along with the ______ block.

  • elif
  • else
  • else if
  • otherwise
For a single if condition, if you want to run one block for a true condition and another block for a false condition, you need the 'if' along with the 'else' block. The 'else' block contains the code that is executed when the 'if' condition evaluates to False.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *