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