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