import java.util.EnumSet; public final class EnumMeg { public static void main(String[] args) { Integer i = null; method(i); } static…
November 10th, 2009
What will be the ouput of the following program?
No Comments, Java Facts, by Daisy Williams.class box { int height; int weight; box( int a, int b) { height=a; weight=b; System.out.println(height); System.out.println(weight); } } class…