Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 4 5 or less 5 or more exactly 5 exactly 4 5 or less 5 or more exactly 5 ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addLast(5) list1.append(5) list1.addEnd(5) list1.add(5) list1.addLast(5) list1.append(5) list1.addEnd(5) list1.add(5) 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 Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 2 4 1 0 2 4 1 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? _a = 1 __a = 1 __str__ = 1 None of the mentioned _a = 1 __a = 1 __str__ = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x**y None of the mentioned x^y x^^y x**y None of the mentioned x^y x^^y ANSWER DOWNLOAD EXAMIANS APP