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