1. Q12: What is the only numerical value that has a truthiness of False?🔗 1 0 No numerical values have a truthiness of False All numerical values have a truthiness of False 🔗
2. Q13: Click on all conditions that are true in the following code before the code is executed:🔗if a + c: c = 12 if c: b = 1 elif a: a = c elif b: a = b 🔗
3. Q14: Enter the value of each variable after the following code is executed:🔗 if a + c: c = 12 if c - a: a = 1 if b: a = b elif a - a: a = c else: a = 13 The value of variable a is , the value of variable b is , and the value of variable c is .🔗 🔗
4. Q15: What is the output of the following code?🔗 if b >= c: if b >= a: print("b") elif a >= c: print("a") elif b >= a: print("c") elif a >= c: print("a") else: print("c") 🔗 🔗
5. Q16: What is the output of the following code?🔗 if c == 2*a: print("double") elif c == 3*a: print("triple") elif c == 4*a: print("quadruple") elif c == 5*a: print("quintuple") else: print("unknown") 🔗 🔗