Java Servlet Programming Question:
Download Questions PDF

What’s the Servlet Interface?

Answer:

The central abstraction in the Servlet API is the Servlet interface. All servlets implement this interface, either directly or, more commonly, by extending a class that implements it such as HttpServlet. Servlets–>Generic Servlet–>HttpServlet–>MyServlet. The Servlet interface declares, but does not implement, methods that manage the servlet and its communications with clients. Servlet writers provide some or all of these methods when developing a servlet.

Download Java Servlet Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What are the uses of Servlets?When a servlet accepts a call from a client, it receives two objects. What are they?