Python Which module in Python supports regular expressions? regex re pyregex none of the mentioned regex re pyregex none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.A re.X re.U re.I re.A re.X re.U re.I ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. tuple set list dictionary tuple set list dictionary ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? always when there is no exception when there is an exception only if some condition that has been specified is satisfied always when there is no exception when there is an exception only if some condition that has been specified is satisfied ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? A private method in a superclass can be overridden A subclass method can be overridden by the superclass Overriding isn’t possible in Python A non-private method in a superclass can be overridden A private method in a superclass can be overridden A subclass method can be overridden by the superclass Overriding isn’t possible in Python A non-private method in a superclass can be overridden ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango NameError ValueError TypeError SyntaxError NameError ValueError TypeError SyntaxError ANSWER DOWNLOAD EXAMIANS APP