Python Correct way to draw a line in canvas tkinter canvas.create_line() create_line(canvas) None of the mentioned line() canvas.create_line() create_line(canvas) None of the mentioned line() ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? regex re none of the mentioned pyregex regex re none of the mentioned pyregex ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? always when there is an exception only if some condition that has been specified is satisfied when there is no exception always when there is an exception only if some condition that has been specified is satisfied when there is no exception ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 1 2 4 0 1 2 4 ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Window Frame Label All of the mentioned Window Frame Label All of the mentioned ANSWER DOWNLOAD EXAMIANS APP