Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array dictionary tuple list array dictionary tuple list ANSWER DOWNLOAD EXAMIANS APP
Python Which Python is used by client to opens a TCP connection to hostname? s.connect() s.accept() All of the mentioned s.bind() s.connect() s.accept() All of the mentioned s.bind() 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 Which is the correct expression for power(xy ) in Python? None of the mentioned x^^y x**y x^y None of the mentioned x^^y x**y x^y ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? All raised standard exceptions must be handled in Python When there is a deviation from the rules of a programming language, a semantic error is thrown The standard exceptions are automatically imported into Python programs If any exception is thrown in try block, else block is executed All raised standard exceptions must be handled in Python When there is a deviation from the rules of a programming language, a semantic error is thrown The standard exceptions are automatically imported into Python programs If any exception is thrown in try block, else block is executed ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? str bool String int str bool String int ANSWER DOWNLOAD EXAMIANS APP