Python What is the output of print 0.1 + 0.2 == 0.3 in python? Error True Machine dependent False Error True Machine dependent False ANSWER DOWNLOAD EXAMIANS APP
Python An exception is ____________ a standard module an object a module a special function a standard module an object a module a special function ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? A non-private method in a superclass can be overridden Overriding isn’t possible in Python A subclass method can be overridden by the superclass A private method in a superclass can be overridden A non-private method in a superclass can be overridden Overriding isn’t possible in Python A subclass method can be overridden by the superclass A private method in a superclass can be overridden ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __a = 1 None of the mentioned __str__ = 1 _a = 1 __a = 1 None of the mentioned __str__ = 1 _a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? Dictionaries are mutable The keys of a dictionary can be accessed using values Dictionaries aren’t ordered The values of a dictionary can be accessed using keys Dictionaries are mutable The keys of a dictionary can be accessed using values Dictionaries aren’t ordered The values of a dictionary can be accessed using keys ANSWER DOWNLOAD EXAMIANS APP