Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ newline caret (^) ampersand (&) percentage symbol (%) newline caret (^) ampersand (&) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary tuple list array dictionary tuple list array ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? None of the mentioned All of the mentioned id returns the identity of the object Every object doesn’t have a unique id None of the mentioned All of the mentioned id returns the identity of the object Every object doesn’t have a unique id ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Else except Assert finally Else except Assert finally ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? 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 Less restriction on the type values that can be passed to a given method ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? Dictionaries aren’t ordered Dictionaries are mutable The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys Dictionaries aren’t ordered Dictionaries are mutable The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys ANSWER DOWNLOAD EXAMIANS APP