Java Servlet Programming Question:

What are the uses of Servlets?

Java Servlet Programming Interview Question
Java Servlet Programming Interview Question

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.


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