Python To add a new element to a list we use which Python command? list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? 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 they are used to indicate a private variables of a class they are used to indicate global variables they confuse the interpreter ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ Capitalized None of the mentioned lower case UPPER CASE Capitalized None of the mentioned lower case UPPER CASE ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? Less restriction on the type values that can be passed to a given method Makes the program code smaller No 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 Less restriction on the type values that can be passed to a given method Makes the program code smaller No 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 What does the function re.search do? none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of the following cannot be a variable? in __init__ It on in __init__ It on ANSWER DOWNLOAD EXAMIANS APP