Python Is Python case sensitive when dealing with identifiers? no yes machine dependent None of the mentioned no yes machine dependent None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? Machine dependent Error True False Machine dependent Error True False ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Lists Class Tuples Dictionary Lists Class Tuples Dictionary ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.regex(str) re.create(str) re.compile(str) re.assemble(str) re.regex(str) re.create(str) re.compile(str) re.assemble(str) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.I re.X re.U re.A re.I re.X re.U re.A ANSWER DOWNLOAD EXAMIANS APP