Python In order to store values in terms of key and value we use what Python core data type. list set dictionary tuple list set dictionary tuple ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango NameError SyntaxError TypeError ValueError NameError SyntaxError TypeError ValueError ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary list array tuple dictionary list array tuple ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 4 0 2 1 4 0 2 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? A subclass method can be overridden by the superclass A private method in a superclass can be overridden Overriding isn’t possible in Python A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass A private method in a superclass can be overridden Overriding isn’t possible in Python A non-private method in a superclass can be overridden ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? re none of the mentioned regex pyregex re none of the mentioned regex pyregex ANSWER DOWNLOAD EXAMIANS APP