Python What is the output of print 0.1 + 0.2 == 0.3 in python? False Error Machine dependent True False Error Machine dependent True ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? no machine dependent None of the mentioned yes no machine dependent None of the mentioned yes ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.compile(str) re.create(str) re.regex(str) re.assemble(str) re.compile(str) re.create(str) re.regex(str) re.assemble(str) ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? All of the mentioned from tkinter import * import tkinter import tkinter as t All of the mentioned from tkinter import * import tkinter import tkinter as t ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ newline percentage symbol (%) ampersand (&) caret (^) newline percentage symbol (%) ampersand (&) caret (^) ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists ANSWER DOWNLOAD EXAMIANS APP