Python What arithmetic operators cannot be used with strings in Python? * + – All of the mentioned * + – All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __str__ = 1 None of the mentioned __a = 1 _a = 1 __str__ = 1 None of the mentioned __a = 1 _a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists Invalid type Array of tuples List of tuples Tuples of lists Invalid type Array of tuples List of tuples ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? 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 Dictionaries aren’t ordered Dictionaries are mutable ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.X re.U re.I re.A re.X re.U re.I re.A ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango TypeError NameError ValueError SyntaxError TypeError NameError ValueError SyntaxError ANSWER DOWNLOAD EXAMIANS APP