Sunday, 21 April 2013

Class -5-What will be the output when you compile and execute the following program.

Class -5-What will be the output when you compile and execute the following program.


package net.dharmaraj;

public class Base {
private int i;

static public void main(String[] a) {
System.out.println("Value is: " + new Base().i);
}
}




Select most appropriate answer(s).
a) Value is: 0 
b) Compile time error. Can't access the private variable i defined in class Base.
c) Compile time error. Can't make a static reference to nonstatic variable i in class Base.
d) Runtime error. Variable i is uninitialized
e) Compile time error. Variable i is uninitialized
f) None

No comments:

Post a Comment