✅ 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()"); } }