Python Which of the following is not a standard exception in Python? ValueError AssignmentError NameError IOError ValueError AssignmentError NameError IOError ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 4 1 2 0 4 1 2 ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? All of the mentioned s.listen() s.accept() s.bind() All of the mentioned s.listen() s.accept() s.bind() ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.I re.A re.X re.U re.I re.A re.X re.U ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? only if some condition that has been specified is satisfied when there is no exception when there is an exception always only if some condition that has been specified is satisfied when there is no exception when there is an exception always ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter All of the mentioned import tkinter as t from tkinter import * import tkinter All of the mentioned import tkinter as t from tkinter import * ANSWER DOWNLOAD EXAMIANS APP