Python Which of the following statements is true? A private method in a superclass can be overridden A subclass method can be overridden by the superclass 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 A non-private method in a superclass can be overridden Overriding isn’t possible in Python ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 0 False True 1 0 False True 1 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? _a = 1 __str__ = 1 __a = 1 None of the mentioned _a = 1 __str__ = 1 __a = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ percentage symbol (%) ampersand (&) caret (^) newline percentage symbol (%) ampersand (&) caret (^) newline ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * import tkinter import tkinter as t All of the mentioned from tkinter import * import tkinter import tkinter as t All of the mentioned ANSWER DOWNLOAD EXAMIANS APP