Python Which of the following functions results in case insensitive matching? re.X re.U re.A re.I re.X re.U re.A re.I ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? IOError NameError ValueError AssignmentError IOError NameError ValueError AssignmentError ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Assert except Else finally Assert except Else finally ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango SyntaxError ValueError NameError TypeError SyntaxError ValueError NameError TypeError ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? Always when an exception occurs when an exception occurs in to except block when no exception occurs Always when an exception occurs when an exception occurs in to except block when no exception occurs ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type Array of tuples ANSWER DOWNLOAD EXAMIANS APP