Python Which of the following functions results in case insensitive matching? re.A re.I re.X re.U re.A re.I re.X re.U ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? A subclass method can be overridden by the superclass A private method in a superclass can be overridden A non-private method in a superclass can be overridden Overriding isn’t possible in Python A subclass method can be overridden by the superclass A private method in a superclass can be overridden A non-private method in a superclass can be overridden Overriding isn’t possible in Python ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 1 True 0 False 1 True 0 False ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than zero zero one more than one more than zero zero one more than one ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? True Error Machine dependent False True Error Machine dependent False ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code ANSWER DOWNLOAD EXAMIANS APP