Friday, 10 May 2013

Constructor - 3 -

What will happen when you attempt to compile and run the following code



package net.dharmaraj;

class Base {

protected int i = 99;
}

public class Ab {

private int i = 1;

public static void main(String argv[]) {

Ab a = new Ab();
System.out.println(a.i);
a.hallow();
}

void hallow() {

System.out.println("Claines " + i);
}
}





1) Compile time error
2) Compilation and output of Claines 99
3) Compilation and output of Claines 1
4) Compilation and not output at runtime


Answer:--
1
Claines 1


No comments:

Post a Comment