The doDelete() method allows a servlet to handle a DELETE request. It is called by the server via the service…
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,…
November 20th, 2009
ucertify Early Bird discount
No Comments, News, by Daisy Williams.Just Go and Get the uCertify’s discount on certifcation kits on this Early Bird discount. Our kits provide’s a strong…
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…