Python Which is the correct expression for power(xy ) in Python? x^^y None of the mentioned x**y x^y x^^y None of the mentioned x**y x^y ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.create(str) re.regex(str) re.compile(str) re.assemble(str) re.create(str) re.regex(str) re.compile(str) re.assemble(str) ANSWER DOWNLOAD EXAMIANS APP
Python Python MRO concept is Method Resolution Order Method Recursion Order Method Resetting Order None of the mentioned Method Resolution Order Method Recursion Order Method Resetting Order None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? Overriding isn’t possible in Python A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass A private method in a superclass can be overridden Overriding isn’t possible in Python A non-private method in a superclass can be overridden A subclass method can be overridden by the superclass A private method in a superclass can be overridden ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Define Fun Def Function Define Fun Def Function ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) ANSWER DOWNLOAD EXAMIANS APP