HOME      BLOG       FORUMS      CONTACT       ABOUT

Archive for August 30th, 2011

JSP/Servlets interview questions – Part 3

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..