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.regex(str) re.compile(str) re.create(str) re.assemble(str) re.regex(str) re.compile(str) re.create(str) re.assemble(str) ANSWER DOWNLOAD EXAMIANS APP
Python Python MRO concept is None of the mentioned Method Resetting Order Method Recursion Order Method Resolution Order None of the mentioned Method Resetting Order Method Recursion Order Method Resolution Order ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? 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 A subclass method can be overridden by the superclass A private method in a superclass can be overridden ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. list dictionary set tuple list dictionary set tuple ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Invalid type Tuples of lists Array of tuples List of tuples Invalid type Tuples of lists Array of tuples ANSWER DOWNLOAD EXAMIANS APP