Python Which of the following blocks will be executed whether an exception is thrown or not? finally Assert Else except finally Assert Else except 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 When is the finally block executed? when there is no exception always only if some condition that has been specified is satisfied when there is an exception when there is no exception always only if some condition that has been specified is satisfied when there is an exception 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 1 4 2 0 1 4 2 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.assemble(str) re.regex(str) re.create(str) re.compile(str) re.assemble(str) re.regex(str) re.create(str) re.compile(str) ANSWER DOWNLOAD EXAMIANS APP