In Python, which of these in not a core data type? Class Dictionary Tuples Lists TRUE ANSWER : ? YOUR ANSWER : ?
In order to store values in terms of key and value we use what Python core data type. list tuple dictionary set TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following statements is true? A non-private method in a superclass can be overridden Overriding isn’t possible in Python A private method in a superclass can be overridden A subclass method can be overridden by the superclass TRUE ANSWER : ? YOUR ANSWER : ?
Which of following Python Network/Internet modules supports HTTP protocol? All of the mentioned xmlrpclib urllib httplib TRUE ANSWER : ? YOUR ANSWER : ?
Python MRO concept is Method Resetting Order Method Recursion Order None of the mentioned Method Resolution Order TRUE ANSWER : ? YOUR ANSWER : ?
In which of the following field, we can put our Button? Window All of the mentioned Frame Label TRUE ANSWER : ? YOUR ANSWER : ?
What does the function re.search do? matches a pattern at any position in the string such a function does not exist none of the mentioned matches a pattern at the start of the string TRUE ANSWER : ? YOUR ANSWER : ?
How we install tkinter in system ? pip install python pip install tkinter tkinter install tkinter pip install TRUE ANSWER : ? YOUR ANSWER : ?