Python Which of the following is invalid variable in Python? __str__ = 1 _a = 1 None of the mentioned __a = 1 __str__ = 1 _a = 1 None of the mentioned __a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) None of the mentioned canvas.create_line() line() create_line(canvas) None of the mentioned canvas.create_line() line() ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t All of the mentioned from tkinter import * import tkinter import tkinter as t All of the mentioned from tkinter import * import tkinter ANSWER DOWNLOAD EXAMIANS APP
Python Python MRO concept is Method Recursion Order None of the mentioned Method Resolution Order Method Resetting Order Method Recursion Order None of the mentioned Method Resolution Order Method Resetting Order ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when no exception occurs when an exception occurs when an exception occurs in to except block Always when no exception occurs when an exception occurs when an exception occurs in to except block Always ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? All of the mentioned + * – All of the mentioned + * – ANSWER DOWNLOAD EXAMIANS APP