多项选择题


Which two overload the setVar method()

A.A
B.B
C.C
D.D
E.E


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题Which thefollowingstatements about static inner classes is true?()

A. An anonymous class can be declared as static.
B. A static inner class cannot be a static member of the outer class.
C. A static inner class does not require an instance of the enclosing class.
D. Instance member of a static inner class can be referenced using the class name of the staticinner class.

2.多项选择题Which the following two statements are true?()

A. An inner class may be declared as static.
B. An anonymous inner class can be declared as public.
C. An anonymous inner class can be declared as private.
D. An anonymous inner class can extend an abstract class.
E. An anonymous inner class can be declared as protected.

3.多项选择题Under what two circumstances is the set JspBody method NOT called in a tag class that implements the Simple Tag interface? ()

A. The tag is invoked without a body.
B. The doTAb method throws an exception.
C. The  element has the value empty.
D. The tag is called with the attribute skip-body=true

5.单项选择题


Which statement inserted at line II, retrieves the text from the second text field?()

A. second = request.getParameter (“foo”):
B. second = request.getParameter (“foo”, 1):
C. second = request.getParameter (“foo”,2):
D. second = request.getParameter (foo”) [1]:
E. second = request.getParameter Values (“foo”) [1]:

6.单项选择题


Which retrieves the binary input stream on line 13?()  

A. request.get Writer ():
B. request.get Reader ():
C. request.get Input Stream():
D. request.get Resource As Stream():
E. request.get Resource As Stream (Servlet Request. REQUEST):

7.单项选择题Given an HttpServlet Request request and Http Servlet Response response, which sets a cookie “username” with the value “joe” in a servlet.?()

A. request.add Cookie (“username”. “joe”)
B. request.set Cookie (“username, “joe”)
C. response.add Cookie (username”, “joe”))
D. request.add Header (new Cookie (“username”, “joe”))
E. request.add Cookie (new Cookie (“username”, “joe”))
F. response.add Cookie (new Cookie (“username”, “joe”))
G. response.add Header (new Cookie (“username”, “joe”))

8.单项选择题


Which statement. At line 16, retrieves an Input Stream for the file / WEBINF/myresrc.bin?()

A. ctx.get put Stream (“/WEB-INF/myresrc.bin”):
B. ctx.get Input Stream (“/WEB-INF/myresrc.bin”):
C. ctx.get Resource As Stream (“/WEB-INF/myresrc.bin”):
D. new Input Stream (new Url (“/WEB-INF/myresrc.bin”):
E. Get Class (). Get Resource As Stream (“/WEB-INF/myresrc.bin”):

9.多项选择题


Which two are true about the tag handler referneed by my Tag. ()

A. The do Start Tag method is called once.
B. The do After Body method is NOT called.
C. The EVAL_Page constant is a valid return value for the do End Tag Method.
D. the EVAL_BODY_BUFFERED constant is a valid return value for the do Start Tag method.

10.单项选择题


What is the result?()

A. The output is X = 6 y = 0
B. The output is x = 7 y = 0
C. The output is x = 6 y = -1
D. The output is x = 7 y = -1
E. Compilation will fail.

最新试题

A developer is designing a web application which extensively uses EJBs and JMS. The developer finds that there is a lot of duplicated code to build the JNDI contexts to access the beans and queues. Further, because of the complexity, there are numerous errors in the code. Which J2EE design pattern provides a solution for this problem?()

题型:单项选择题

Which two authentication mechanisms provide weaker protection than other mechanisms?()

题型:多项选择题

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

题型:单项选择题

What else must the developer do to ensure that the intended security goal is achieved()?  

题型:单项选择题

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

题型:多项选择题

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

题型:单项选择题

When using Form Based Authentication, which pair of fields must be used in the login form?()  

题型:单项选择题

Given the HttpServlet code:  getServletContext().setAttribute(“foo”, “value”);What is the result?()

题型:单项选择题

Which the two are valid and equivalent?()

题型:多项选择题

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

题型:多项选择题