Python In order to store values in terms of key and value we use what Python core data type. dictionary list tuple set dictionary list tuple set ANSWER DOWNLOAD EXAMIANS APP
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 Which of the following creates a pattern object? re.create(str) re.compile(str) re.regex(str) re.assemble(str) re.create(str) re.compile(str) re.regex(str) re.assemble(str) ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? 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 No restriction on the type values that can be passed to a given method ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? regex pyregex re none of the mentioned regex pyregex re none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Else finally except Assert Else finally except Assert ANSWER DOWNLOAD EXAMIANS APP