Python Programming Language Quiz 2 Python Programming Language Quiz 2 For creating a symbolic link,we useos.symblin()os.symlink()os.symb_link()os.ln()Which of the following is the correct expansion of list_list = [expr(j) for j in list_0 if func(j)] list_list = [] for j in list_0: if func(j): list_list.append(j)for j in list_0: if func(j): list_list.append(expr(j))list_list = [] for j in list_0: if func(j): list_list.append(expr(j))none of the mentionedWhich of the following is the use of id() function in python?noneEvery object doesn’t have a unique idId returns the identity of the objectNone of the mentionedWhich of the following is a Python tuple?{}[1, 2, 3]{1, 2, 3}(1,2,3)Which of the following uses the “in” operator is used to check if an item is in it?Set ListsDictionaryAll of The AboveWhat is the output of the following code? >>>str="hello there" >>>str[::-1]hellothereerehtollehhellothereWhat is the output of the following? True = False while True: print(True) breakNoneTrueFalsenone of the mentionedWhich of the following is used for storing values in the form of key and valuelisttupledictionaryclassWhat does the function re.match do?matches a pattern at the start of the stringsuch a function does not existmatches a pattern at any position in the stringnone of the mentionedWhat is the output of the following? for i in ''.join(reversed(list('acbd'))): print (i)errora c b dd b c anone of the mentioned