单项选择题


What is the result when a request is sent to MyServlet?()

A. An IllegalStateException is thrown at runtime.
B. An InvalidSessionException is thrown at runtime.
C. The string “value=null” appears in the response stream.
D. The string “value=myAttributeValue” appears in the response stream.


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题


Which statement, inserted at line 16, unbinds an attribute from a session?()

A. session.unbind(“key”);
B. session.remove(“key”);
C. session.removeAttribute(“key”);
D. session.unbindAttribute(“key”);
E. session.deleteAttribute(“key”);

2.单项选择题Which the statement is true about web container session management()?

A. Access to session-scoped attributes is guaranteed to be thread-safe by the web container.
B. To activate URL rewriting, the developer must use the HttpServletResponse.setURLRewriting method.
C. If the web application uses HTTPS, then the web container may use the data on the HTTPS request stream to identify the client.
D. The JSESSIONID cookie is stored permanently on the client so that a user may return to the web application and the web container will rejoin that session.

3.多项选择题

Which two are true? ()

A. Tag files can only be accessed using a tagdir attribute.
B. The sort.jsp page translates successfully and invokes the tag defined by beta.tag.
C. The sort.jsp page produces a translation error because a taglib directive must always have a uri attribute.
D. Tag files can only be placed in /WEB-INF/tags, and NOT in any subdirectories of /WEB-INF/tags.
E. The tagdir attribute in line 2 can be replaced by a uri attribute if a TLD referring to beta.tag is created and added to the web application.

4.多项选择题Which the two are true about the JSTL core iteration custom tags?()

A. It may iterate over arrays, collections, maps and strings.
B. The body of the tag may contain EL code, but not scripting code.
C. When looping over collections, a loop status object may be used in the tag body.
D. It may iterate over a map, but only the key of the mapping may be used in the tag body.
E. When looping over integers (for example begin1=’1’ end=’10’), a loop status object may not be used in the tag body.

5.多项选择题


Which two are true?()

A. The prefix ‘java’ is reserved.
B. The URI ‘myTags’ must be properly mapped to a TLD file by the web container.
C. A translation error occurs because the prefix is considered identical by the web container.
D. For the tag usage , the tag1 must be unique in the union of tag names in ‘myTags’  and ‘moreTags

6.单项选择题


To implement the design intent, which statement must be inserted at line 42?()

 

A. session = response.getSession();
B. session = request.getSession();
C. session = request.getSession(true);
D. session = request.getSession(false);
E. session = request.getSession(“jsessionid”);

7.多项选择题Given that a scoped attribute cart exists only in a user’s session, which two, taken independently, ensure the scoped attribute cart no longer exists?()

A. ${cart = null} 
B. <c:remove var="cart" /> 
C. <c:remove var="${cart}" /> 
D. <c:remove var="cart" scope="session" /> 
E. <c:remove scope="session">cart</c:remove> 
F. <c:remove var="${cart}" scope="session" /> 
G. <c:remove scope="session">${cart}</c:remove>

9.单项选择题Which interface must a class implement so that instances of the class are notified after any object is added to a session? ()

A. javax.servlet.http.HttpSessionListener
B. javax.servlet.http.HttpSessionValueListener
C. javax.servlet.http.HttpSessionBindingListener
D. javax.servlet.http.HttpSessionAttributeListener

最新试题

For a given product instance, which three jsp:setProperty attributes must be used to initialized its properties form the HTML form? ()

题型:多项选择题

A developer for the Company.com web site has been told that users may turn off cookie support in their browsers. What must the developer do to ensure that these customers can still use the web application?()  

题型:单项选择题

What code, inserted at line 21, is called prior to a session being migrated to a different JVM assuming the web application containing MyExample is deployed in a container which supports distributed applications?()

题型:单项选择题

Which two produce the output "one, two and three"?()

题型:多项选择题

Given a web application in which the request parameter product ID contains a product identifier.Which two EL expressions evaluate the value of the product ID?()

题型:多项选择题

Which three are guaranteed to be valid for the  element of a web application deployment descriptor?()

题型:多项选择题

Which two are true?()

题型:多项选择题

Which the three are true about servlet filters?()

题型:多项选择题

Assume session is an HttpSession, and is not referenced anywhere else in ServletA. Which two changes, taken together, ensure that value is equal to “Hello” on line 23? ()

题型:多项选择题

Which two classes or interfaces provide a getSession method?()

题型:多项选择题