What is servlet mapping?
What are different Authentication options available in Servlets.
When is the servlet instance created in the life cycle of servlet? What is the importance of configuring a servlet?
Why is it that we can't give relative URL's when using ServletContext.getRequestDispatcher() when we can use the same while calling ServletRequest.getRequestDispatcher()?
List out difference between a JavaBean from a Servlet?
How to find whether a parameter exists in the request object?
List out the difference between ServletConfig and ServletContext?
The code in a finally clause will never fail to execute, right?
Can we use the constructor, instead of init(), to initialize servlet?
Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?
What is the difference between using getSession(true) and getSession(false) methods?
Whats the advantages using servlets over using CGI?
What mechanisms are used by a Servlet Container to maintain session information?
Which interface must be implemented by all servlets?
When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?