Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary tuple array list dictionary tuple array list ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? finally Else Assert except finally Else Assert except ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x^y x^^y x**y None of the mentioned x^y x^^y x**y None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango ValueError SyntaxError NameError TypeError ValueError SyntaxError NameError TypeError ANSWER DOWNLOAD EXAMIANS APP
Python config() in python Tkinter are used for place the widget configure the widget change property of the widget destroy the widget place the widget configure the widget change property of the widget destroy the widget ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? Always when an exception occurs when no exception occurs when an exception occurs in to except block Always when an exception occurs when no exception occurs when an exception occurs in to except block ANSWER DOWNLOAD EXAMIANS APP