Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 2 0 4 1 2 0 4 ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists Array of tuples List of tuples Invalid type Tuples of lists Array of tuples List of tuples Invalid type ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? Dictionaries aren’t ordered Dictionaries are mutable The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values Dictionaries aren’t ordered Dictionaries are mutable The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Def Fun Define Function Def Fun Define Function ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Improving clarity of the code Reducing duplication of code Decomposing complex problems into simpler pieces All of the mentioned Improving clarity of the code Reducing duplication of code Decomposing complex problems into simpler pieces All of the mentioned ANSWER DOWNLOAD EXAMIANS APP