• +91 9723535972
  • info@interviewmaterial.com

Servlet Interview Questions and Answers

Servlet Interview Questions and Answers

Question - 1 : - What is Servlet?

Answer - 1 : - A servlet is a Java technology-based Web component, managed by a container called servlet container or servlet engine, that generates dynamic content and interacts with web clients via a request\/response paradigm.

Question - 2 : - Why is Servlet so popular?

Answer - 2 : - Because servlets are platform-independent Java classes that are compiled to platform-neutral byte code that can be loaded dynamically into and run by a Java technology-enabled Web server.

Question - 3 : - What is servlet container?

Answer - 3 : - The servlet container is a part of a Web server or application server that provides the network services over which requests and responses are sent, decodes MIME-based requests, and formats MIME-based responses. A servlet container also contains and manages servlets through their lifecycle.

Question - 4 : - When a client request is sent to the servlet container, how does the container choose which servlet to invoke?

Answer - 4 : - The servlet container determines which servlet to invoke based on the configuration of its servlets, and calls it with objects representing the request and response.

Question - 5 : - If a servlet is not properly initialized, what exception may be thrown?

Answer - 5 : - During initialization or service of a request, the servlet instance can throw an UnavailableException or a ServletException.

Question - 6 : - Given the request path below, which are context path, servlet path and path info?

Answer - 6 : - /bookstore/education/index.html context path: /bookstore servlet path: /education path info: /index.html

Question - 7 : - What is filter? Can filter be used as request or response?

Answer - 7 : - A filter is a reusable piece of code that can transform the content of HTTP requests,responses, and header information. Filters do not generally create a response or respond to a request as servlets do, rather they modify or adapt the requests for a resource, and modify or adapt responses from a resource.

Question - 8 : - When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?

Answer - 8 : - I know all major browsers ignore it even though the HTML 3.2 and 4.0 specifications require it. But building a DOCTYPE line tells HTML validators which version of HTML you are using so they know which specification to check your document against. These validators are valuable debugging services, helping you catch HTML syntax errors.

Question - 9 : - What is new in ServletRequest interface ? (Servlet 2.4)

Answer - 9 : - The following methods have been added to ServletRequest 2.4 version: public int getRemotePort() public java.lang.String getLocalName() public java.lang.String getLocalAddr() public int getLocalPort()

Question - 10 : - Request parameter How to find whether a parameter exists in the request object?

Answer - 10 : - 1.boolean hasFoo = !(request.getParameter("foo") == null || request.getParameter("foo").equals("")); 2. boolean hasParameter = request.getParameterMap().contains(theParameter); (which works in Servlet 2.3+)


NCERT Solutions

 

Share your email for latest updates

Name:
Email:

Our partners