Welcome to your Python Basic Quiz #4 - Strings User Name Email 1. What will be the output of the below code? string = "Python"print(string[2])string[2] = 'A' PAthon Python None of the above PyAthon None 2. Which of the below are the correct way of defining strings in Python? Select all that apply string = "Python has a "Syntax Checker"" string = "Python has a Syntax Checker" string = "Python has a Syntax Checker' string = "Python has a 'Syntax Checker'" 3. What will be the output of the below code? string_1 = "Python"string_2 = "Python"print(id(string_1) == id(string_2)) None of the above True False None 4. What will be the output of the below code? multi_line = """This is a String.\nWell, It's multi-line.""" print(multi_line) This is a String.\nWell, It's multi-line. This is a String.Well, It's multi-line. SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes 5. What will be the output of the below code? string_1 = "Python"string_1 = string_1 + '1'print(id(string_1) == id(string_2)) True False None of the above None Time's up