Java Servlet Programming Question:
Download Questions PDF

What are the uses of Servlets?

Answer:

A servlet can handle multiple requests concurrently, and can synchronize requests. This allows servlets to support systems such as on-line conferencing. Servlets can forward requests to other servers and servlets. Thus servlets can be used to balance load among several servers that mirror the same content, and to partition a single logical service over several servers, according to task type or organizational boundaries.

Download Java Servlet Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What’s the advantages using servlets than using CGI?What’s the Servlet Interface?