Python Why are local variable names beginning with an underscore discouraged in Python Programming? they confuse the interpreter they are used to indicate global variables they slow down execution they are used to indicate a private variables of a class they confuse the interpreter they are used to indicate global variables they slow down execution they are used to indicate a private variables of a class ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? 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 All raised standard exceptions must be handled in Python ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Lists Dictionary Tuples Class Lists Dictionary Tuples Class ANSWER DOWNLOAD EXAMIANS APP
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 of the following is the use of id() function in python? id returns the identity of the object None of the mentioned All of the mentioned Every object doesn’t have a unique id id returns the identity of the object None of the mentioned All of the mentioned Every object doesn’t have a unique id ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 1 True 0 False 1 True 0 False ANSWER DOWNLOAD EXAMIANS APP