Question: What is the output of the following Java program? class Testl { public int Varl; public Testl() { Varl = 555; System.out.println(AAA); do Something; }
What is the output of the following Java program?

class Testl { public int Varl; public Testl() { Varl = 555; System.out.println("AAA"); do Something; } public void doSomething { Varl = 1111; System.out.println("A.doSomething("); } } public class Test2 extends Testl { public int Var2; public Test20 { System.out.println("BBB"); doSomething(; System.out.println("Varl=" + Varl); Var2 = 111; } public void doSomething0 { System.out.println("Var2=" + Var2); public static void main(String[] args) { new Test2(); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
