Python Which of the following functions results in case insensitive matching? re.U re.X re.I re.A re.U re.X re.I re.A ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. set tuple dictionary list set tuple dictionary list ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? except Else Assert finally except Else Assert finally ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Decomposing complex problems into simpler pieces All of the mentioned Improving clarity of the code Reducing duplication of code Decomposing complex problems into simpler pieces All of the mentioned Improving clarity of the code Reducing duplication of code ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) ANSWER DOWNLOAD EXAMIANS APP
Python Essential thing to create a window screen using tkinter python call tk() function To define a geometry create a button All of the mentioned call tk() function To define a geometry create a button All of the mentioned ANSWER DOWNLOAD EXAMIANS APP