SCJP Certification

Sun Certified Java Programmer Certification exam essentials

Posts Tagged ‘code’

November 16th, 2009

What will be the result while compiling and running the code?

No Comments, Java Questions, by Daisy Williams.

import java.util.EnumSet; public final class EnumMeg { public static void main(String[] args) { Integer i = null; method(i); } static…

Share

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…

Share