Q80
What will be the output of the following Python code? class A: def test1(self): print(" test of A called ") class B(A): def test(self): print(" test of B called ") class C(A): def test(self): print(" test of C called ") class D(B,C): def test2(self): print(" test of D called ") obj=D() obj.test()
A.
test of B called
test of C called
test of C called
B.
test of C called
test of B called
test of B called
C.
test of B called
AnswerD.
Error, both the classes from which D derives has same method test()
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board