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 Python MRO concept is Method Recursion Order None of the mentioned Method Resolution Order Method Resetting Order Method Recursion Order None of the mentioned Method Resolution Order Method Resetting Order ANSWER DOWNLOAD EXAMIANS APP
Python Which one of these is used for floor division in Python? / % // None of the mentioned / % // None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Tuples of lists Array of tuples Invalid type List of tuples Tuples of lists Array of tuples Invalid type ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? finally except Assert Else finally except Assert Else ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned ANSWER DOWNLOAD EXAMIANS APP