Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 5 exactly 4 5 or less 5 or more exactly 5 exactly 4 5 or less 5 or more ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? True False 1 0 True False 1 0 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? finally Assert except Else finally Assert except Else 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
Python Which of the following is not a standard exception in Python? AssignmentError IOError NameError ValueError AssignmentError IOError NameError ValueError ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 2 1 4 0 2 1 4 ANSWER DOWNLOAD EXAMIANS APP