✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mis on koodi väljund?
class A: def test(self): return "A"class B(A): def test(self): super().test() return "B"class C(A): def test(self): return "C"obj = B()print(obj.test())