How we install tkinter in system ? pip install python tkinter install tkinter pip install pip install tkinter TRUE ANSWER : ? YOUR ANSWER : ?
In Python, which of these in not a core data type? Lists Dictionary Class Tuples TRUE ANSWER : ? YOUR ANSWER : ?
When is the finally block executed? only if some condition that has been specified is satisfied when there is an exception always when there is no exception TRUE ANSWER : ? YOUR ANSWER : ?
How many except statements can a try-except block have? more than zero zero one more than one TRUE ANSWER : ? YOUR ANSWER : ?
Say s=”hello” what will be the return value of type(s) in Python? int String str bool TRUE ANSWER : ? YOUR ANSWER : ?
What is the output of print 0.1 + 0.2 == 0.3 in python? Error Machine dependent False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of these about a dictionary is false? The keys of a dictionary can be accessed using values Dictionaries are mutable The values of a dictionary can be accessed using keys Dictionaries aren’t ordered TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following functions results in case insensitive matching? re.U re.A re.X re.I TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following creates a pattern object? re.compile(str) re.regex(str) re.create(str) re.assemble(str) 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 : ?