✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public class TestClass {
public static void main(String[] args) {
Base sub = new Sub();
sub.test(); } }
class Base {
public static void test() {
System.out.println("Base.test()"); } }
class Sub extends Base {
public static void test() {
System.out.println("Sub.test()"); } }
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!