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? The standard exceptions are automatically imported into Python programs If any exception is thrown in try block, else block is executed When there is a deviation from the rules of a programming language, a semantic error is thrown All raised standard exceptions must be handled in Python The standard exceptions are automatically imported into Python programs If any exception is thrown in try block, else block is executed When there is a deviation from the rules of a programming language, a semantic error is thrown All raised standard exceptions must be handled in Python ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate global variables they are used to indicate a private variables of a class they confuse the interpreter they slow down execution they are used to indicate global variables they are used to indicate a private variables of a class they confuse the interpreter they slow down execution ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) line() canvas.create_line() None of the mentioned create_line(canvas) line() canvas.create_line() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. Both (A) and (B) s.recvfrom(),s.sendto() None of the mentioned s.recv(), s.send() Both (A) and (B) s.recvfrom(),s.sendto() None of the mentioned s.recv(), s.send() 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