1.
The jquery_1_3_2.jar file contains the JQuery Ajax framework in its META-INF/ resources directory. Where should the jar file be placed inside the web application to ensure the resources it contains are accessible by clients?
2.
Given a jar file packaged with three web fragments with names X, Y and Z respectively. Which of the following deployment descriptor, web.xml, snippets correspond to the web fragment processing orders of X, Y, Z? (i) X Y Z (ii) X Y (iii) Y Z (iv) X Z (v) X Y
3.
Which defines the welcome files in a web application deployment descriptor?
4.
Which code snippet specifies the metadata for a servlet with: (i) url mapping "/mytest"' (ii) Initial parameter with name "debug" and value "10"' (iii) Support asynchronous operation?
5.
Which annotation specifies the metadata as a javax.servlet.http.HttpSessionListener?
6.
You are creating a web form with this HTML: 11.
12. 13. 14. 15.
Which HTTP method is used when sending this request from the browser?
7.
You are creating a JSP page to display a collection of data. This data can be displayed in several different ways so the architect on your project decided to create a generic servlet that generates a comma delimited string so that various pages can render the data in different ways. This servlet takes on request parameter: objoctID. Assume that this servlet is mapped to the URL pattern: /WEB-INF/data. In the JSP you are creating, you need to split this string into its elements separated by commas and generate an HTML
    list from the data. Which JSTL code snippet will accomplish this goal?
8.
Which JSP standard action can be used to import content from a resource called foo.jsp?
9.
Which is a benefit of precompiling a JSP page?
10.
A web browser need NOT always perform a complete request for a particular page that it suspects might NOT have changed. The HTTP specification provides a mechanism for the browser to retrieve only a partial response from the web server; this response includes information, such as the Last-Modified date but NOT the body of the page. Which HTTP method will the browser use to retrieve such a partial response?