Python Which of the following creates a pattern object? re.regex(str) re.assemble(str) re.compile(str) re.create(str) re.regex(str) re.assemble(str) re.compile(str) re.create(str) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? A private method in a superclass can be overridden Overriding isn’t possible in Python A subclass method can be overridden by the superclass A non-private method in a superclass can be overridden A private method in a superclass can be overridden Overriding isn’t possible in Python A subclass method can be overridden by the superclass A non-private method in a superclass can be overridden ANSWER DOWNLOAD EXAMIANS APP
Python An exception is ____________ a special function an object a module a standard module a special function an object a module a standard module ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? int str bool String int str bool String ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) canvas.create_line() line() None of the mentioned create_line(canvas) canvas.create_line() line() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? when there is no exception only if some condition that has been specified is satisfied when there is an exception always when there is no exception only if some condition that has been specified is satisfied when there is an exception always ANSWER DOWNLOAD EXAMIANS APP