Python Basic Quiz #7 – OperatorsAsha PonrajJanuary 22, 2022 Welcome to your Python Basic Quiz #7 - Operators User Name Email 1. What will be the output of the below code? a = 5b = 4print((b<a) or (b==a)) True SyntaxError: invalid syntax False TypeError: unsupported operand type(s) None 2. 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) None 3. 11 % 2 = ? 10 1 5 None 4. 22 // 5 = ? 2 4.2 4 None 5. Which of the following will result in False? True or False True and False False == False None Time's up