Python Which are Server Socket Methods provided by Python? s.listen() s.accept() All of the mentioned s.bind() s.listen() s.accept() All of the mentioned s.bind() ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 4 exactly 5 5 or more 5 or less exactly 4 exactly 5 5 or more 5 or less ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at the start of the string such a function does not exist matches a pattern at any position in the string none of the mentioned matches a pattern at the start of the string such a function does not exist matches a pattern at any position in the string 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 Makes the program code smaller 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 Less restriction on the type values that can be passed to a given method Makes the program code smaller 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 ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? String str bool int String str bool int ANSWER DOWNLOAD EXAMIANS APP