Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 4 0 2 1 4 0 2 1 ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? Machine dependent False Error True Machine dependent False Error True ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? 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 matches a pattern at the start of the string ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __a = 1 None of the mentioned __str__ = 1 _a = 1 __a = 1 None of the mentioned __str__ = 1 _a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? when there is an exception only if some condition that has been specified is satisfied when there is no exception always when there is an exception only if some condition that has been specified is satisfied when there is no exception always ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? None of the mentioned machine dependent no yes None of the mentioned machine dependent no yes ANSWER DOWNLOAD EXAMIANS APP