PYTHON QUIZ By HARIKARAN S - August 13, 2021 FacebookTwitterPinterestWhatsApp Welcome to your PYTHON QUIZ WHO HAS INTRODUCED PYTHONGuido van RossumBILL GATESJames GoslingNone of Above Which of these in not a core data type?classdefDictionary Python in the return type of function id?Valueintfloatbool What is the data type of the followingaTuple = (1, 'motive', 1+3j) print(type(aTuple[2:3]))tuplelistcomplexpointer what class method python isAlive():enables a program to wait for threads to terminateretrieves the name of a thread.updates the name of a thread.verifies an active thread What is a negative index in Python?<<<> Which of the following items are present in the function header?return valueintfloatfunction name and parameter list What is the output of the following code snippet?num = 1 def func(): num = 4 print(num) func() print(num)1 44 11 1The program has a runtime error What is the data type of print(type(0x0X))hexintfloat What is the output of the followingfor l in 'Moti': if l == 'o': pass print(l, end=", ")M,o,tM,o,t,i if -3 will evaluate to trueTrueFalse What to empty the following dictionarystudent = { "name": "Emma", "class": 9, "marks": 75 }del studentstudent.clear()del student[0:2] What is the output of the followingmotive = lambda x: x ** 3print(motive(9))125744729500 What is the output of the followingx = 8y = 9print(x ** y)print(x // y)134217728 0134217728 21342 3None of above Time is Up!