By Ramakrishna on Sep 28, 2009 in rmi interview questions | 0 Comments
This topic is to delete the textbox/textarea/selectbox which will be created dynamically in the application using javascript
if you need to delete the rows just u need to select that check box and go for the delete button .
You can have this code for using in your application this must be related to the button which [...]
By Ramakrishna on Apr 7, 2009 in J2EE Interview Question | 2 Comments
Q) What is J2EE
Rep) Java 2 Platform, Enterprise Edition.
Q) What is J2EE application
Rep) Any deployable unit of J2EE functionality. This can be
a single J2EE module or a group of modules packaged
into an EAR file along with a J2EE application
deployment descriptor. J2EE applications are typically
engineered to be distributed across multiple computing
tiers.
Q) What is J2EE component
Rep) A [...]
By Ramakrishna on Apr 7, 2009 in Servlet Interview Questions | 0 Comments
OVERVIEW OF SERVLETS
Servlets provide a Java based solution used to address the problems currently associated with doing server side programming including inextensible scripting solution, platform specific API’s, and incomplete interfaces.
Servlets are objects that confirm to a specific interface that can be plugged into a Java based server. Servlets are to the server side what applets [...]
By Ramakrishna on Apr 6, 2009 in Java Interview Questions | 4 Comments
Q) What is the difference between ‘throw’ and ‘throws’ ?And it’s application?
Rep) Exceptions that are thrown by java runtime systems can be handled by Try and catch blocks. With throw exception we can handle the exceptions thrown by the program itself. If a method is capable of causing an exception that it does not
handle, [...]