Python Which of the following blocks will be executed whether an exception is thrown or not? except Else finally Assert except Else finally Assert ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array dictionary tuple list array dictionary tuple list ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter canvas.create_line() create_line(canvas) line() None of the mentioned canvas.create_line() create_line(canvas) line() None of the mentioned 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 is the correct expression for power(xy ) in Python? x^^y None of the mentioned x^y x**y x^^y None of the mentioned x^y x**y ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? False 1 0 True False 1 0 True ANSWER DOWNLOAD EXAMIANS APP