Python Which of the following is not a standard exception in Python? AssignmentError IOError NameError ValueError AssignmentError IOError NameError ValueError ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Improving clarity of the code Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces Improving clarity of the code Reducing duplication of code All of the mentioned Decomposing complex problems into simpler pieces ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Invalid type Tuples of lists Array of tuples List of tuples Invalid type Tuples of lists Array of tuples ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. list set dictionary tuple list set dictionary tuple ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? _a = 1 __a = 1 __str__ = 1 None of the mentioned _a = 1 __a = 1 __str__ = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate a private variables of a class they are used to indicate global variables they confuse the interpreter they slow down execution they are used to indicate a private variables of a class they are used to indicate global variables they confuse the interpreter they slow down execution ANSWER DOWNLOAD EXAMIANS APP