Python Is Python case sensitive when dealing with identifiers? yes no None of the mentioned machine dependent yes no None of the mentioned machine dependent ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t All of the mentioned import tkinter from tkinter import * import tkinter as t All of the mentioned import tkinter from tkinter import * ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? matches a pattern at the start of the string matches a pattern at any position in the string such a function does not exist none of the mentioned matches a pattern at the start of the string matches a pattern at any position in the string such a function does not exist none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when no exception occurs Always when an exception occurs when an exception occurs in to except block when no exception occurs Always when an exception occurs when an exception occurs in to except block ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter None of the mentioned canvas.create_line() create_line(canvas) line() None of the mentioned canvas.create_line() create_line(canvas) line() ANSWER DOWNLOAD EXAMIANS APP