Python Is Python case sensitive when dealing with identifiers? no None of the mentioned yes machine dependent no None of the mentioned yes machine dependent ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Decomposing complex problems into simpler pieces Reducing duplication of code Improving clarity of the code All of the mentioned Decomposing complex problems into simpler pieces Reducing duplication of code Improving clarity of the code All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) 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 In order to store values in terms of key and value we use what Python core data type. list tuple dictionary set list tuple dictionary set 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