Python Which of the following functions results in case insensitive matching? re.X re.A re.I re.U re.X re.A re.I re.U ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller 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
Python What is the result of cmp(3, 1) in python? 1 False 0 True 1 False 0 True ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate a private variables of a class they slow down execution they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class they slow down execution they confuse the interpreter they are used to indicate global variables 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