HttpServlet class is declared as abstract class why because sun people dont want to create an object to HttpServlet class for this reason it is declared as abstract.
How you know that HttpServlet class have no abstarct methods
public class TestServlet extends HttpServlet{
}
//compile the above program if we are able to compile then there are no abstract methods
in the HttpServlet class which we need to over ride.