Sunday, 21 April 2013

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

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


public class Base
{
// private int i;
// private static int i;
// static int i;
static public void main(String[] a)
  {
System.out.println("Value is: " + 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