Assume that class A extends class B, ich extends class C, also all three classes implements the method test(). how can a methd in class A invoke the test() method defined in class C with out creating a new inctance of class C.
1) super.test() 2) super.super.test() 3) c.test()
