Python What does the function re.match do? such a function does not exist matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned such a function does not exist matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python An exception is ____________ a special function a module a standard module an object a special function a module a standard module an object ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ Capitalized UPPER CASE lower case None of the mentioned Capitalized UPPER CASE lower case None of the mentioned 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 No 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 Makes the program code smaller Less 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 More restriction on the type values that can be passed to a given method Makes the program code smaller ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. s.recvfrom(),s.sendto() s.recv(), s.send() None of the mentioned Both (A) and (B) s.recvfrom(),s.sendto() s.recv(), s.send() None of the mentioned Both (A) and (B) ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary tuple array list dictionary tuple array list ANSWER DOWNLOAD EXAMIANS APP