Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 1 0 4 2 1 0 4 ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x^^y x**y None of the mentioned x^y x^^y x**y None of the mentioned x^y ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Lists Dictionary Tuples Class Lists Dictionary Tuples Class ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? bool int str String bool int str String ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? except Else Assert finally except Else Assert finally ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? AssignmentError IOError ValueError NameError AssignmentError IOError ValueError NameError ANSWER DOWNLOAD EXAMIANS APP