Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 1 2 4 0 1 2 4 ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? regex re none of the mentioned pyregex regex re none of the mentioned pyregex ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Fun Define Def Function Fun Define Def Function ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? when there is an exception always when there is no exception only if some condition that has been specified is satisfied when there is an exception always when there is no exception only if some condition that has been specified is satisfied 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