Ifelse and loops in Python Quiz How do you check if a number is odd in Python? if x / 2 == 1: if x % 2 != 0: if x ** 2 == 1: if x // 2 == 0: What will be the output of the following code? x = 10 if x > 5: if x < 15: print("Within range") Within range No output Error Out of range Which of the following is not a valid conditional statement? if x != 0: if x == 10: if x: if (x > 5) What will happen if the loop condition is never False? The loop stops automatically None Syntax error Infinite loop What is the purpose of the elif statement? It is the same as else. It is a function. It is used to check multiple conditions. It is used to define a loop. What will be the output of the following code? x = 10 if x > 5 and x < 15: print(“Valid”) Invalid No output Valid Error What will be the output of the following code? x = 5 if x > 5: print(“A”) elif x == 5: print(“B”) else: print(“C”) A C Error B Which loop is best when the number of iterations is unknown? while loop switch case do-while loop for loop What is the correct syntax for an if statement in Python? if x = 10: if x == 10 then: if x == 10: if (x == 10) then What will range(5) generate? 5 01234 12345 Error Loading …