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