Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.insert(3, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.append(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ UPPER CASE Capitalized None of the mentioned lower case UPPER CASE Capitalized None of the mentioned lower case 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 is the output of print 0.1 + 0.2 == 0.3 in python? Machine dependent True Error False Machine dependent True Error False ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when no exception occurs when an exception occurs Always when an exception occurs in to except block when no exception occurs when an exception occurs Always when an exception occurs in to except block ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) None of the mentioned canvas.create_line() line() create_line(canvas) None of the mentioned canvas.create_line() line() ANSWER DOWNLOAD EXAMIANS APP