Python Which is the correct expression for power(xy ) in Python? x**y x^^y None of the mentioned x^y x**y x^^y None of the mentioned x^y ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? NameError IOError ValueError AssignmentError NameError IOError ValueError AssignmentError ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 0 True False 1 0 True False 1 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 Correct way to draw a line in canvas tkinter create_line(canvas) line() None of the mentioned canvas.create_line() create_line(canvas) line() None of the mentioned canvas.create_line() ANSWER DOWNLOAD EXAMIANS APP