Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 4 5 or more exactly 5 5 or less exactly 4 5 or more exactly 5 5 or less ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array list tuple dictionary array list tuple dictionary ANSWER DOWNLOAD EXAMIANS APP
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 Which of the following statements is true? The standard exceptions are automatically imported into Python programs All raised standard exceptions must be handled in Python If any exception is thrown in try block, else block is executed When there is a deviation from the rules of a programming language, a semantic error is thrown The standard exceptions are automatically imported into Python programs All raised standard exceptions must be handled in Python If any exception is thrown in try block, else block is executed When there is a deviation from the rules of a programming language, a semantic error is thrown ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? always when there is no exception when there is an exception only if some condition that has been specified is satisfied always when there is no exception when there is an exception only if some condition that has been specified is satisfied ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * import tkinter as t import tkinter All of the mentioned from tkinter import * import tkinter as t import tkinter All of the mentioned ANSWER DOWNLOAD EXAMIANS APP