Python What does the function re.search do? matches a pattern at any position in the string none of the mentioned matches a pattern at the start of the string such a function does not exist matches a pattern at any position in the string none of the mentioned matches a pattern at the start of the string such a function does not exist ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate a private variables of a class they slow down execution they are used to indicate global variables they confuse the interpreter they are used to indicate a private variables of a class they slow down execution they are used to indicate global variables they confuse the interpreter ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Decomposing complex problems into simpler pieces Reducing duplication of code Improving clarity of the code All of the mentioned Decomposing complex problems into simpler pieces Reducing duplication of code Improving clarity of the code All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys Dictionaries aren’t ordered Dictionaries are mutable The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys Dictionaries aren’t ordered Dictionaries are mutable 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
Python What is the maximum possible length of an identifier allowed by Python? 79 characters 31 characters 63 characters None of the mentioned 79 characters 31 characters 63 characters None of the mentioned ANSWER DOWNLOAD EXAMIANS APP