Python What error occurs when you execute the following Python code snippet? apple = mango SyntaxError TypeError ValueError NameError SyntaxError TypeError ValueError NameError ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.I re.A re.X re.U re.I re.A re.X re.U ANSWER DOWNLOAD EXAMIANS APP
Python An exception is ____________ a module an object a special function a standard module a module an object a special function a standard module ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when an exception occurs in to except block when an exception occurs Always when no exception occurs when an exception occurs in to except block when an exception occurs Always when no exception occurs ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? True False Error Machine dependent True False Error Machine dependent ANSWER DOWNLOAD EXAMIANS APP