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