✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Дано код:class Super { static String ID = "QBANK"; }class Sub extends Super{ static { System.out.print("In Sub"); }}class Test{ public static void main(String[] args) { System.out.println(Sub.ID); }}Що буде отримано в результаті виконання даного коду?