Python Say s=”hello” what will be the return value of type(s) in Python? int String str bool int String str bool ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.I re.U re.A re.X re.I re.U re.A re.X 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 Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 4 0 2 1 4 0 2 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? id returns the identity of the object None of the mentioned Every object doesn’t have a unique id All of the mentioned id returns the identity of the object None of the mentioned Every object doesn’t have a unique id All of the mentioned 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