Python Which of the following is not a standard exception in Python? AssignmentError ValueError NameError IOError AssignmentError ValueError NameError IOError ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Tuples of lists Invalid type Array of tuples List of tuples Tuples of lists Invalid type Array of tuples ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __a = 1 _a = 1 None of the mentioned __str__ = 1 __a = 1 _a = 1 None of the mentioned __str__ = 1 ANSWER DOWNLOAD EXAMIANS APP
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 How we import a tkinter in python program ? from tkinter import * import tkinter All of the mentioned import tkinter as t from tkinter import * import tkinter All of the mentioned import tkinter as t ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Else finally Assert except Else finally Assert except ANSWER DOWNLOAD EXAMIANS APP