Tuesday, August 30th, 2011 Posted in JSP/Servlet interview questions | No Comments »
61. How will you delete a cookie? Cookie c = new Cookie ("name", null); c.setMaxAge(0); response.addCookie(killCookie); 62. What is the difference between Context init parameter and Servlet init parameter? Servlet ... Read more..Monday, August 29th, 2011 Posted in JSP/Servlet interview questions | No Comments »
81. When a session object gets added or removed to the session, which event will get notified ? HttpSessionBindingListener will get notified When an object is added and/or removed from the ... Read more..Friday, August 26th, 2011 Posted in JSP/Servlet interview questions | No Comments »
101. What are the uses of ServletResponse interface? ServletResponse allows the servlet to set the content length and MIME type of that response. It provides an output stream, ServletOutputStream and a ... Read more..Monday, August 22nd, 2011 Posted in EJB interview questions | No Comments »
Here you can find out a list of interview questions for EJB. These questions are often asked by the interviewer for EJB (Enterprise Java Bean) interview. We put ourĀ maximum ... Read more..Saturday, August 20th, 2011 Posted in JMS Interview questions | No Comments »
Here you can find out a list of interview questions for JMS. These questions are often asked by the interviewer for JMS (Java Message service) interview. We put our maximum ... Read more..