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 Which Python keyword is used for function? Def Function Fun Define Def Function Fun Define ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? regex none of the mentioned pyregex re regex none of the mentioned pyregex re ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. tuple dictionary set list tuple dictionary set list ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? The keys of a dictionary can be accessed using values Dictionaries are mutable The values of a dictionary can be accessed using keys Dictionaries aren’t ordered The keys of a dictionary can be accessed using values Dictionaries are mutable The values of a dictionary can be accessed using keys Dictionaries aren’t ordered ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter None of the mentioned line() create_line(canvas) canvas.create_line() None of the mentioned line() create_line(canvas) canvas.create_line() ANSWER DOWNLOAD EXAMIANS APP