Python To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? Overriding isn’t possible in Python A private method in a superclass can be overridden A subclass method can be overridden by the superclass A non-private method in a superclass can be overridden Overriding isn’t possible in Python A private method in a superclass can be overridden A subclass method can be overridden by the superclass A non-private method in a superclass can be overridden ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Fun Def Function Define Fun Def Function Define ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? tkinter install pip install tkinter tkinter pip install pip install python tkinter install pip install tkinter tkinter pip install pip install python ANSWER DOWNLOAD EXAMIANS APP
Python Which of following Python Network/Internet modules supports HTTP protocol? urllib All of the mentioned xmlrpclib httplib urllib All of the mentioned xmlrpclib httplib ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? _a = 1 None of the mentioned __a = 1 __str__ = 1 _a = 1 None of the mentioned __a = 1 __str__ = 1 ANSWER DOWNLOAD EXAMIANS APP