Test 3 Started: Jan 18 at 2:13pm Quiz Instructions Flag question: Question 1 Question 11 pts When do you use an elif statement? Group of answer choices To end an IF statement To Input a variable To handle string values To check multiple expressions for TRUE and execute a block of code as soon as one of the conditions evaluates to TRUE. Flag question: Question 2 Question 21 pts All of the following statements need their code to be indented except? Group of answer choices print statements elif statements if statements else statements Flag question: Question 3 Question 31 pts Which of the following are TRUE about all algorithms? There may be more than one. Group of answer choices All algorithms have an order. All algorithms can only do number calculations All algorithms have clear instructions All algorithms stop in a finite amount of time. Flag question: Question 4 Question 41 pts The following code could be rewritten into a single if statement that checks for either condition to be true using: if (x > 12): if (x < 34): Group of answer choices not and or None of the above Flag question: Question 5 Question 51 pts When should you use an else statement? Group of answer choices To execute code if none of the other expressions were TRUE To check the first expression for TRUE To check one of many expressions for TRUE To execute code when one of the other expressions were TRUE Flag question: Question 6 Question 61 pts Write the code to test if the number in the variable text1 is greater or equal to than 15. Group of answer choices if (text1 >= 15): if (text1 > "15"): if (text1 < "15"): if (text1 > 15): Flag question: Question 7 Question 71 pts Write the code to test if the number 33 is stored in the variable var1: Group of answer choices if (var1 == 33): if (“var1” == 33): if ( var1 == "33"): if (str(var1) == 33): Flag question: Question 8 Question 81 pts Write the code to test if the variables num1 and num2 are the same. Group of answer choices if (num1 != num2): if (equa