Python Which of the following blocks will be executed whether an exception is thrown or not? Assert except Else finally Assert except Else finally ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.create(str) re.compile(str) re.assemble(str) re.regex(str) re.create(str) re.compile(str) re.assemble(str) re.regex(str) ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? only if some condition that has been specified is satisfied when there is an exception when there is no exception always only if some condition that has been specified is satisfied when there is an exception when there is no exception always ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? machine dependent no yes None of the mentioned machine dependent no yes None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary tuple list array dictionary tuple list array ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter canvas.create_line() None of the mentioned create_line(canvas) line() canvas.create_line() None of the mentioned create_line(canvas) line() ANSWER DOWNLOAD EXAMIANS APP