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 Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 4 2 0 1 4 2 0 ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type Array of tuples ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ ampersand (&) newline percentage symbol (%) caret (^) ampersand (&) newline percentage symbol (%) caret (^) ANSWER DOWNLOAD EXAMIANS APP
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 result of cmp(3, 1) in python? 1 0 False True 1 0 False True ANSWER DOWNLOAD EXAMIANS APP