Python Correct way to draw a line in canvas tkinter canvas.create_line() line() create_line(canvas) None of the mentioned canvas.create_line() line() create_line(canvas) None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. 5 or more exactly 5 exactly 4 5 or less 5 or more exactly 5 exactly 4 5 or less ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? AssignmentError ValueError NameError IOError AssignmentError ValueError NameError IOError ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? except Else Assert finally except Else Assert finally ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? str String bool int str String bool int ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t from tkinter import * import tkinter All of the mentioned import tkinter as t from tkinter import * import tkinter All of the mentioned ANSWER DOWNLOAD EXAMIANS APP