I was going through the ePractizeLabs simulator yesterday and I found the core J2EE patterns also included in the questions. So, I thought I'd rather clarify with you guys.
Hi! How can we put some text in an image file using Java? I have a String and I want to put this String in an image file (.gif, .bmp, .jpg or any other). Any help would be appreciated.
forward will forward the request to the new servlet/jsp. Any out.println() statements in the servlet from where you call the forward method would not be of any use. You can't even call response.getWriter() method in this case. You can only do that in the servlet to which the control has been forwaded.
include will process the included servlet/jsp and any out.println()/html stuff will be included, and then control will come back to the servlet/jsp that called include method.
If you comment the overridden method it means that you are not overridding. So, obviously it will call the method in the super class. And for the super class "d" means "super". Hence the o/p.
I see that the link "Programmer Certification Study FAQ" has not been update for quite a long time. It would be of great help to all of us if this link gives us some information about the new exam (SCJP 1.5). Thanks!