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 = 'True_Statement'b = '_Statement'print(a-b) TypeError: unsupported operand type(s) ValueError: invalid literal for int() with base 10 True None 2. 22 // 5 = ? 4 4.2 2 None 3. What will be the output of the below code? a = 5b = 4print((b<a) or (b==a)) SyntaxError: invalid syntax False True TypeError: unsupported operand type(s) None 4. Which of the following will result in False? True and False False == False True or False None 5. 11 % 2 = ? 1 10 5 None Time's up