Python Why are local variable names beginning with an underscore discouraged in Python Programming? 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 they are used to indicate global variables they are used to indicate a private variables of a class ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values Dictionaries are mutable Dictionaries aren’t ordered The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values Dictionaries are mutable Dictionaries aren’t ordered ANSWER DOWNLOAD EXAMIANS APP
Python In Python GUI programming, the method that leaves an impression of a turtle shape at the current location shape() position() All of the mentioned stamp() shape() position() All of the mentioned stamp() ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than zero more than one one zero more than zero more than one one zero ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method 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