Answer Posted / satendra
Context switching is actually light weight thread context
switches which servlet used to do in multithreading
environment to improve its performance.
servlets do not require creation of a new process for each
request. In most environments, many servlets run in parallel
within the same process as the server.
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
Is servlet a server side scripting language?
How the JSP file will be executed on the Server side?
What do you mean by deployment descriptor?
Explain in brief the directory structure of a web application?
What is the difference between using getSession(true) and getSession(false) methods?
What is difference between the HTTP Servlet and Generic Servlet? Explain about their methods and parameters?
Can we use the constructor, instead of init(), to initialize servlet?
What is the need of servlet filters?
How native code can be used in a servlet?
Explain jsessionid?
Why do you use session tracking in httpservlet?
What is meant by session? Tell me something about httpsession class?
Why do we use sendredirect() method?
How do we share data using 'getservletcontext ()?
What is webservlet?