public class AQuestion { private int i = j; private int j = 10; public static void main(String args[]) { System.out.println((new AQuestion()).i); } }
Answers
a)Compiler error complaining about access restriction of private variables of AQuestion. b)Compiler error complaining about forward referencing. c)No error - The output is 0; d)No error - The output is 10;