Python What is the output of print 0.1 + 0.2 == 0.3 in python? Machine dependent True Error False Machine dependent True Error False 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 How many except statements can a try-except block have? more than one zero more than zero one more than one zero more than zero one ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists Invalid type Array of tuples List of tuples Tuples of lists Invalid type Array of tuples List of tuples ANSWER DOWNLOAD EXAMIANS APP
Python config() in python Tkinter are used for change property of the widget destroy the widget place the widget configure the widget change property of the widget destroy the widget place the widget configure the widget ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 0 4 2 1 0 4 2 ANSWER DOWNLOAD EXAMIANS APP