单项选择题Given a JSP error page, which implicit object refers to the uncaught Throwable that resulted in th epage being invoked?()

A. Error
B. Exception
C. Throwable
D. Request error
E. Request exception


您可能感兴趣的试卷

你可能感兴趣的试题

1.多项选择题


Which two are true?()

A. The function method must have the signaturepublic: String spin().
B. The method must be mapped to the logical name “spin” in the web.xml file.
C. The function method must have the signature:public String spinIt().
D. The function method must have the signature:public static String spin().
E. The function method must have the signature:public static String spinIT().
F. The function class must be named Spinner, and must be in the package com.example.

2.多项选择题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?()

A. ${product ID}
B. ${param.productID}
C. ${params.productID}
D. ${params.productID[1]}
E. ${paramvalues.productID}
F. ${paramValues.productID[0]}
G. ${pageContext.request.productID}

6.多项选择题Which two classes or interfaces provide a getSession method?()

A. javax.servlet.http.HttpServletRequest
B. javax.servlet.http.HttpSessionContext
C. javax.servlet.http.HttpsServletResponse
D. javax.servlet.http.HttpSessionBindingEvent
E. javax.servlet.http.HttpSessionAttributeEvent

7.多项选择题Which the three interfaces need to be declared in the web application deployment descriptor? ()

A. HttpSessionListener
B. HttpSessionBindingListener
C. HttpSessionTimedOutListener
D. HttpSessionAttributeListener
E. HttpSessionActivationListener
F. HttpSessionPassivatedListener

8.单项选择题

Given that session is a valid HttpSession object:  
Int max = session.getAttribute(“MyReallyLongName”);  
Which is true?()  

A. The value returned needs to be cast to an int.
B. The getAttribute methos takes two arguments.
C. Primitive CANNOT be stored in the HttpSession.
D. The HttpSession attribute name must NOT exceed eight characters.

9.多项选择题Upon a user’s first visit to the website, which two operations are always performed when the getSession method is called with no arguments in a servlet?()

A. All URLs returned by the server are rewritten.
B. An HttpSession object is created if necessary.
C. The user name and password of the user are checked.
D. The session ID is stored in the HTTP response as a cookie.

10.单项选择题Which interface must a class implement to be informed of a session creation event?()

A. javax.servlet.http.HttpSessionListener
B. javax.servlet.http.HttpSessionBindingListener
C. javax.servlet.http.HttpSessionCreationListener
D. javax.servlet.http.HttpSessionActivationListener

最新试题

Given a JSP error page, which implicit object refers to the uncaught Throwable that resulted in th epage being invoked?()

题型:单项选择题

Which statement, at line 16, retrieves an InputStream for the file /WEBINF/ nyresrc.bin()?

题型:单项选择题

Which code snippet, inserted at line 8, causes the value Company to be output?()

题型:单项选择题

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? ()

题型:多项选择题

A session-scoped attribute, product, is stored by a servlet. That servlet then forwards to a JSP page. This attribute holds an instance of the com.Company.  Product class with a name property of “The Matrix” and price property of 39.95. Given the JSP page code snippet:What is the response output of this JSP page code snippet? ()

题型:单项选择题

Which path, relative to a web application’s root, identifies the web application’s deployment descriptor?()

题型:单项选择题

A custom JSP tag must be able to support an arbitrary number of attributes whose names are unknown when the tag class is designed. Which two are true? ()

题型:多项选择题

Which the two are valid and equivalent?()

题型:多项选择题

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

题型:多项选择题