Welcome to your Python Basic Quiz #4 - Strings User Name Email 1. 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" 2. What will be the output of the below code? string_1 = "Python"string_2 = "Python"print(id(string_1) == id(string_2)) True None of the above False None 3. 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 None of the above 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.Well, It's multi-line. This is a String.\nWell, It's multi-line. SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes 5. What will be the output of the below code? string = "Python"print(string[2])string[2] = 'A' PyAthon None of the above Python PAthon None Time's up