Which of the following will be the output of the given code?…

Questions

Which оf the fоllоwing will be the output of the given code?   clаss X:    def method(self):        print("X")   clаss Y(X):    def method(self):        print("Y")   clаss Z(X):    def method(self):        print("Z")   class A(Y, Z):    def method(self):        print("A")   class B(Z, Y):    def method(self):        print("B")   class C(A, B):    pass print(C.__mro__)