Python Basic Quiz #7 – OperatorsAsha PonrajJanuary 22, 2022 Welcome to your Python Basic Quiz #7 - Operators User Name Email 1. Which of the following will result in False? True or False False == False True and False 2. 11 % 2 = ? 10 1 5 3. What will be the output of the below code? a = 'True_Statement'b = '_Statement'print(a-b) ValueError: invalid literal for int() with base 10 True TypeError: unsupported operand type(s) 4. What will be the output of the below code? a = 5b = 4print((b<a) or (b==a)) False SyntaxError: invalid syntax True TypeError: unsupported operand type(s) 5. 22 // 5 = ? 4.2 4 2 1 out of Time is Up! Time's up