SCJP Certification

Sun Certified Java Programmer Certification exam essentials

Posts Tagged ‘exam’

April 20th, 2010

What is the doDelet() method?

No Comments, SCWCD, by Daisy Williams.

The doDelete() method allows a servlet to handle a DELETE request. It is called by the server via the service…

Share

November 21st, 2009

SUN Java anounces a series of performance tunning certifications.

No Comments, News, by Daisy Williams.

Now days SUN announces Java performance tunning certifications. By doing these certification you will learn a blend of tuning methodology,…

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