SCJP Certification

Sun Certified Java Programmer Certification exam essentials

Archive for November 10th, 2009

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