Python Programming Language Quiz 4 Python Programming Language Quiz 4 To shuffle the list(listt) which function is used ?listt.shuffle()shuffle(listt)random.shuffle(listt)random.shuffleList(listt)The function is defined inModuleClassBoth a and bNone of the mentionedWhich function overloads the // operator?__div__()__ceildiv__()__truediv__() __floordiv__()trunc() returns intboolfloatNoneWhich of the following is not a complex number?k = 2 + 3jk = complex(2, 3)k = 2 + 3lk = 2 + 3Jstring.ascii_letters give the same result as :string.lowercase_string.upercasestring.ascii_lowercase_string.digitsstring.lettersstring.ascii_lowercase+string.ascii_upercaseWhat is the output of the following? print("Hey {0[0]} and {0[1]}".format(('foo', 'bin')))Hey (‘foo’, ‘bin’) and (‘foo’, ‘bin’)Hey foo and binerrorNone of the mentionedPython is InterpretedInteractivebothnone of theseWhat is the output of print tuple [1:3] if tuple = ( 'ahjd', 786 , 2.23, 'sean', 70.2 )?(786, 2.23)(786, 2.23)(2.23,sean)errorThe type of sys.argv is asetlisttuplestring