Python When is the finally block executed? always only if some condition that has been specified is satisfied when there is an exception when there is no exception always only if some condition that has been specified is satisfied when there is an exception when there is no exception ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when an exception occurs in to except block when an exception occurs Always when no exception occurs when an exception occurs in to except block when an exception occurs Always when no exception occurs ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? _a = 1 __str__ = 1 None of the mentioned __a = 1 _a = 1 __str__ = 1 None of the mentioned __a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array list dictionary tuple array list dictionary tuple ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? pip install tkinter tkinter install tkinter pip install pip install python pip install tkinter tkinter install tkinter pip install pip install python ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? bool String str int bool String str int ANSWER DOWNLOAD EXAMIANS APP