Python Which of the following blocks will be executed whether an exception is thrown or not? Assert except Else finally Assert except Else finally ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? All of the mentioned + * – All of the mentioned + * – ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.X re.U re.A re.I re.X re.U re.A re.I ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? matches a pattern at the start of the string such a function does not exist matches a pattern at any position in the string none of the mentioned matches a pattern at the start of the string such a function does not exist matches a pattern at any position in the string none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? no machine dependent None of the mentioned yes no machine dependent None of the mentioned yes ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.add(5) list1.addLast(5) list1.addEnd(5) list1.append(5) list1.add(5) list1.addLast(5) list1.addEnd(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP