Python What is the output of print 0.1 + 0.2 == 0.3 in python? True Machine dependent False Error True Machine dependent False Error ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Less restriction on the type values that can be passed to a given method Makes the program code smaller More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Less restriction on the type values that can be passed to a given method Makes the program code smaller ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? None of the mentioned x**y x^y x^^y None of the mentioned x**y x^y x^^y ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Else except finally Assert Else except finally Assert ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? regex none of the mentioned re pyregex regex none of the mentioned re pyregex 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