Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 4 1 2 0 4 1 2 0 ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) None of the mentioned line() canvas.create_line() create_line(canvas) None of the mentioned line() canvas.create_line() ANSWER DOWNLOAD EXAMIANS APP
Python Which one of these is used for floor division in Python? // None of the mentioned / % // None of the mentioned / % ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Array of tuples Invalid type List of tuples Tuples of lists Array of tuples Invalid type List of tuples Tuples of lists ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? Always when no exception occurs when an exception occurs in to except block when an exception occurs Always when no exception occurs when an exception occurs in to except block when an exception occurs ANSWER DOWNLOAD EXAMIANS APP