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 is the use of id() function in python? 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 id returns the identity of the object None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ newline ampersand (&) caret (^) percentage symbol (%) newline ampersand (&) caret (^) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? when there is no exception only if some condition that has been specified is satisfied when there is an exception always when there is no exception only if some condition that has been specified is satisfied when there is an exception always ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than one zero more than zero one more than one zero more than zero one ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. dictionary set tuple list dictionary set tuple list ANSWER DOWNLOAD EXAMIANS APP