单项选择题In form-based authentication, what must be included in the HTML returned from the URL specified by the  element?()

A. a base-64 encoded user name and password
B. a form that POSTs to the j_security_check URL
C. an applet that requests the user name and password from the user
D. a hidden field that supplies the login-constraint used by the application


您可能感兴趣的试卷

你可能感兴趣的试题

2.单项选择题For a given ServletResponse response, which retrieves an object for writing binary data?()

A. response.getWriter()
B. response.getOutputStream()
C. response.getOutputWriter()
D. response.getWriter().getOutputSTream()
E. response.getWriter(Writer.OUTPUT_BINARY)

4.单项选择题Given an HttpServletRequest request, which retrieves an object of type Account with an Id of “account”?()

A. Account account = request.get Resource(”account”):
B. Account account = request.get Attribute (“account”):
C. Account account = request.get Parameter (account”):
D. Account account = (Account)request.getResource (“account”):
E. Account account = (Account) request.get Attribute (“account”):
F. Account account = (Account) request.get Paramter (“account”):

5.单项选择题


What is the result?()

A. Compilation succeeds.
B. An error at line 2 cause compilation to fail.
C. An error at line 9 cause compilation to fail.
D. An error at line 10 cause compilation to fail.
E. An error at line 11 cause compilation to fail.

6.单项选择题


What is the result?()

A. The program runs and prints “Hello”
B. An error causes compilation to fail.
C. The program runs and prints “Hello world!”.
D. The program runs but aborts with an exception.

7.单项选择题


What is the result?()

A. foo has the value””
B. foo has the value null.
C. An exception is thrown.
D. The code will not compile.

8.单项选择题Which the statement is true?()

A. The Error class is a Runtime Exception.
B. No exceptions are subclasses of Error.
C. Any statement that may throw an Error must be enclosed in a try block.
D. any statement that may throw an Exception must be enclosed in a try block.
E. Any statement that may throw an Runtime Exception must be enclosed in a try block.

9.单项选择题


Which code snippet inserted at line 12 cause the client to redirect tohttp://www.example.com?()

A. response.send Redirect (http://www.example.com):
B. response.send Redirect (new URL (“http://www.example.com”));
C. Request Dispatcher rd=  get Servlet Context (). Get Request Dispatcher (  http://www.example.com”)’  rd. forward (request. Response):
D. Request Dispatch rd=  Get Servlet Context ().get Request Dispatcher(  New URL (http://www.example.com));  Rd. forward (request.response):

10.单项选择题Given an Http Session session. A Servlet Request request. And a Servlet Context context. Which retrieves a URL to /WEB INF/ my config.xml within a web application?()

A. session.get Resource (“/WEB-INF/myconfig.xml”)
B. request.get Resource (“/WEB-INF/myconfig.xml”)
C. context.get Resource (“/WEB-INF/myconfig.xml”)
D. get Class ().get Resource (“/WEB-INF/myconfig.xml”)

最新试题

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

题型:多项选择题

Which two are true?()

题型:多项选择题

Which three can be placed at line 23 to retrieve an existing HttpSession object?()

题型:多项选择题

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

题型:单项选择题

Which the three EL expressions, inserted at line 15, are valid and evaluate to "3"? ()

题型:多项选择题

Assume the tag handler for a st:simpletag extends SimpleTagSupport. In what way can scriptlet code be used in the body of st:simple?()

题型:单项选择题

A web application uses the HttpSession mechanism to determine if a user is “logged in”. When a user supplies a valid user name and password, an HttpSession is created for that user. The user has access to the application for only 15 minutes after logging in. The code must determine how long the user has been logged in, and if this time is greater than 15 minutes, must destroy the HttpSession. Which method in HttpSession is used to accomplish this?()

题型:单项选择题

The tag handler for n:recurse extends SimpleTagSupport.Assuming an n:recurse tag can either contain an empty body or another n:recurse tag, which strategy allows the tag handler for n:recurse to output the nesting depth of the deepest n:recurse tag?()  

题型:单项选择题

Which is the true choice about the web container request processing model()?

题型:单项选择题