Python Which of the following statements is true? All raised standard exceptions must be handled in Python The standard exceptions are automatically imported into Python programs When there is a deviation from the rules of a programming language, a semantic error is thrown If any exception is thrown in try block, else block is executed All raised standard exceptions must be handled in Python The standard exceptions are automatically imported into Python programs When there is a deviation from the rules of a programming language, a semantic error is thrown If any exception is thrown in try block, else block is executed ANSWER DOWNLOAD EXAMIANS APP
Python Which of following Python Network/Internet modules supports HTTP protocol? xmlrpclib All of the mentioned urllib httplib xmlrpclib All of the mentioned urllib httplib ANSWER DOWNLOAD EXAMIANS APP
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 None of the mentioned create_line(canvas) line() canvas.create_line() None of the mentioned create_line(canvas) line() canvas.create_line() ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? + – All of the mentioned * + – All of the mentioned * ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array tuple dictionary list array tuple dictionary list ANSWER DOWNLOAD EXAMIANS APP