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