Quiz #1


What is the o/p of following program ?

public class ForwardRef
{
int j = getI();
int i = 5;

private int getI() { return i; }

public static void main(String[] args)
{
System.out.println(new ForwardRef().j);
}
}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s