Python Which of the following statements is true? A private method in a superclass can be overridden A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass Overriding isn’t possible in Python A private method in a superclass can be overridden A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass Overriding isn’t possible in Python ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * import tkinter as t import tkinter All of the mentioned from tkinter import * import tkinter as t import tkinter All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango ValueError SyntaxError TypeError NameError ValueError SyntaxError TypeError NameError ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? none of the mentioned regex re pyregex none of the mentioned regex re pyregex ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? Dictionaries are mutable Dictionaries aren’t ordered The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys Dictionaries are mutable Dictionaries aren’t ordered The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? when there is no exception when there is an exception always only if some condition that has been specified is satisfied when there is no exception when there is an exception always only if some condition that has been specified is satisfied ANSWER DOWNLOAD EXAMIANS APP