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?
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) XYZ
(ii) XY
(iii) YZ
(iv) XZ
(v) XY
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?
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?
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?