Short Quiz 1 – Operators 1. What is the output of following line of code a = 5 b = 2c = 3 result = (a ** b) % c * (a + b) 7 4 56 ValueError 2. What is the output of following line of code x = 10y = 3z = 2result = (x // y) + (x % z) * (y ** z) 27 3 33 3.33 3. What is the output of following line of code a = 3b = 2c = 5result = a * (b + c) / (a - b) 21 21.0 5 None of the above 4. What is the output of following line of code x = Truey = Falsez = Trueresult = (x or y) and not z True False 5. What is the output of following line of code a = 5b = 10c = 15result = (a less than b) or (b greater than c) and not (a == c) True False 6. What is the output of following line of code Equal Not Equal Error None of the above 7. What is the result of 16 >> 2 16 8 4 None of the above 8. What is the result of 16 left shift 2 64 32 16 8 9. What is the output of following line of code a = 10b = 10result = a is b True False 10. What is the output of following line of code a = 'Hello'b = 'Hello'result = a is b True False 11. What is the output of following line of code a = [1,2,3]b = [1,2,3]result = a is b True False 12. 'dev' in 'I am Python developer' True False 13. 'dev' not in 'I am Python developer' True False 14. What is the output of following line of code a = 10b = 20a *= bprint(a) 10 20 ValueError None of the above 15. What is the output of following line of code a = 10b = 2a //= bprint(a) 10 5 5.0 None of the above