Python Correct way to draw a line in canvas tkinter canvas.create_line() line() None of the mentioned create_line(canvas) canvas.create_line() line() None of the mentioned create_line(canvas) ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x^^y x^y x**y None of the mentioned x^^y x^y x**y None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces Improving clarity of the code Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces Improving clarity of the code ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? pyregex regex none of the mentioned re pyregex regex none of the mentioned re ANSWER DOWNLOAD EXAMIANS APP
Python Essential thing to create a window screen using tkinter python To define a geometry call tk() function create a button All of the mentioned To define a geometry call tk() function create a button All of the mentioned ANSWER DOWNLOAD EXAMIANS APP