What is Servlet API used for connecting database?
If a servlet is not properly initialized, what exception may be thrown?
What is new in ServletRequest interface ? (Servlet 2.4)
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?