Python What data type is the object below in Python? L = [1, 23, 'hello', 1] tuple dictionary array list tuple dictionary array list ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? Error True False Machine dependent Error True False Machine dependent ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango NameError ValueError SyntaxError TypeError NameError ValueError SyntaxError TypeError ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when no exception occurs Always when an exception occurs when an exception occurs in to except block when no exception occurs Always when an exception occurs when an exception occurs in to except block ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 0 1 4 2 0 1 4 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? 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 A subclass method can be overridden by the superclass A private method in a superclass can be overridden Overriding isn’t possible in Python ANSWER DOWNLOAD EXAMIANS APP