Python What is the result of cmp(3, 1) in python? True 0 False 1 True 0 False 1 ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? 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 matches a pattern at any position in the string none of the mentioned matches a pattern at the start of the string ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango SyntaxError ValueError TypeError NameError SyntaxError ValueError TypeError NameError ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? machine dependent no yes None of the mentioned machine dependent no yes None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x^y x^^y None of the mentioned x**y x^y x^^y None of the mentioned x**y ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t All of the mentioned from tkinter import * import tkinter import tkinter as t All of the mentioned from tkinter import * import tkinter ANSWER DOWNLOAD EXAMIANS APP