Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ ampersand (&) newline caret (^) percentage symbol (%) ampersand (&) newline caret (^) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? when there is an exception only if some condition that has been specified is satisfied always when there is no exception when there is an exception only if some condition that has been specified is satisfied always when there is no exception ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? IOError AssignmentError ValueError NameError IOError AssignmentError ValueError NameError ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? 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 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 ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? All of the mentioned from tkinter import * import tkinter as t import tkinter All of the mentioned from tkinter import * import tkinter as t import tkinter ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.add(5) list1.addEnd(5) list1.addLast(5) list1.append(5) list1.add(5) list1.addEnd(5) list1.addLast(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP