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 The expression a{5} will match _____________ characters with the previous regular expression. exactly 5 5 or more 5 or less exactly 4 exactly 5 5 or more 5 or less exactly 4 ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango SyntaxError ValueError NameError TypeError SyntaxError ValueError NameError TypeError ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Window Frame All of the mentioned Label Window Frame All of the mentioned Label 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 Less restriction on the type values that can be passed to a given method Makes the program code smaller 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 Less restriction on the type values that can be passed to a given method Makes the program code smaller More restriction on the type values that can be passed to a given method ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 4 2 1 0 4 2 1 0 ANSWER DOWNLOAD EXAMIANS APP