Python Which of the following functions results in case insensitive matching? re.U re.X re.I re.A re.U re.X re.I re.A ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? 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 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 ANSWER DOWNLOAD EXAMIANS APP
Python Which Python is used by client to opens a TCP connection to hostname? s.bind() s.connect() s.accept() All of the mentioned s.bind() s.connect() s.accept() All of the mentioned 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 are used to indicate global variables they slow down execution they confuse the interpreter they are used to indicate a private variables of a class they are used to indicate global variables they slow down execution they confuse the interpreter ANSWER DOWNLOAD EXAMIANS APP
Python Which one of these is used for floor division in Python? % None of the mentioned / // % None of the mentioned / // ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? True False Machine dependent Error True False Machine dependent Error ANSWER DOWNLOAD EXAMIANS APP