PYTHON QUIZ

    Welcome to your PYTHON QUIZ

    WHO HAS INTRODUCED PYTHON
    Which of these in not a core data type?
    Python in the return type of function id?
    What is the data type of the following
    aTuple = (1, 'motive', 1+3j) print(type(aTuple[2:3]))
    what class method python isAlive():
    What is a negative index in Python?
    Which of the following items are present in the function header?
    What is the output of the following code snippet?
    num = 1 def func(): num = 4 print(num) func() print(num)
    What is the data type of print(type(0x0X))
    What is the output of the following
    for l in 'Moti': if l == 'o': pass print(l, end=", ")
    if -3 will evaluate to true
    What to empty the following dictionary
    student = { "name": "Emma", "class": 9, "marks": 75 }
    What is the output of the followingmotive = lambda x: x ** 3
    print(motive(9))
    What is the output of the followingx = 8
    y = 9
    print(x ** y)
    print(x // y)