question 12 given the following, which lines execute if the condition is true? 1 print(\have a great day.\)…

question 12 given the following, which lines execute if the condition is true? 1 print(\have a great day.\) 2 if is_raining: 3 print(\dont forget an umbrella!\) 4 print(\see you soon.\) o 1,2,3 o 1,2,4 o 1,2,3,4
Answer
Answer:
O 1,2,3,4
Explanation:
Step1: Analyze line - by - line execution
Line 1 will always execute as it is not part of any conditional block.
Step2: Evaluate the if condition
When the is_raining condition is true, line 2 (the if statement) is reached and then line 3 (the indented print statement under the if block) will execute.
Step3: Consider post - conditional execution
Line 4 will execute regardless of the if condition result as it is not part of the if block. So all four lines (1, 2, 3, 4) will execute when the condition is true.