Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 4 1 0 2 4 1 0 2 ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? The keys of a dictionary can be accessed using values Dictionaries are mutable The values of a dictionary can be accessed using keys Dictionaries aren’t ordered The keys of a dictionary can be accessed using values Dictionaries are mutable The values of a dictionary can be accessed using keys Dictionaries aren’t ordered ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? Overriding isn’t possible in Python A non-private method in a superclass can be overridden A private method in a superclass can be overridden A subclass method can be overridden by the superclass Overriding isn’t possible in Python A non-private method in a superclass can be overridden A private method in a superclass can be overridden A subclass method can be overridden by the superclass ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango TypeError ValueError SyntaxError NameError TypeError ValueError SyntaxError NameError ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? yes no machine dependent None of the mentioned yes no machine dependent None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Array of tuples Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type ANSWER DOWNLOAD EXAMIANS APP