If you want to add a third option to if and else, you can use:

(1 point)
• print
• input
• alter
• elif

Which of these expressions is used to check whether num is equal to value?
(1 point)
• num ? value
• num = value
• num — value
• num == value

Brandon wants to attend a session at a Python programming conference that will help improve skills in ensuring that the data users enter is correct, meaningful, and in the right format. Which of these conference sessions is most likely to meet Brandon's needs?
(1 point)
• New Debugging Strategies
• New Uses for Conditional Loops
• New Interfaces.
• New Validating Techniques

What are the three keywords that can begin conditional statements?
(1 point)
• if, elif, else
• if, when, then
• if, also, then
• if, then, else

1 answer

Here are the answers to your questions:

  1. If you want to add a third option to if and else, you can use:
    • elif

  2. Which of these expressions is used to check whether num is equal to value?
    • num == value

  3. Which of these conference sessions is most likely to meet Brandon's needs?
    • New Validating Techniques

  4. What are the three keywords that can begin conditional statements?
    • if, elif, else