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 are used to indicate a private variables of a class they slow down execution they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class they slow down execution ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? tkinter install pip install python tkinter pip install pip install tkinter tkinter install pip install python tkinter pip install pip install tkinter ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? machine dependent no None of the mentioned yes machine dependent no None of the mentioned yes ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 1 0 4 2 1 0 4 ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? All of the mentioned Reducing duplication of code Improving clarity of the code Decomposing complex problems into simpler pieces All of the mentioned Reducing duplication of code Improving clarity of the code Decomposing complex problems into simpler pieces ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __a = 1 None of the mentioned _a = 1 __str__ = 1 __a = 1 None of the mentioned _a = 1 __str__ = 1 ANSWER DOWNLOAD EXAMIANS APP