2013年11月12日星期二

The latest SUN certification 310-081 exam practice questions and answers

ITCertKing's experienced expert team has developed effective training program a for SUN certification 310-081 exam, which is very fit for candidates. ITCertKing provide you the high quality product, which can let you do simulation test before the real SUN certification 310-081 exam. So you can take a best preparation for the exam.

If you use the ITCertKing SUN 310-081 study materials, you can reduce the time and economic costs of the exam. It can help you to pass the exam successfully. Before you decide to buy our SUN 310-081 exam materials, you can download our free test questions, including the PDF version and the software version. If you need software versions please do not hesitate to obtain a copy from our customer service staff.

Exam Code: 310-081
Exam Name: SUN (Sun Certified Web Component Developer for J2EE 1.4)
One year free update, No help, Full refund!
Total Q&A: 140 Questions and Answers
Last Update: 2013-11-12

ITCertKing's training product for SUN certification 310-081 exam includes simulation test and the current examination. On Internet you can also see a few websites to provide you the relevant training, but after compare them with us, you will find that ITCertKing's training about SUN certification 310-081 exam not only have more pertinence for the exam and higher quality, but also more comprehensive content.

If you are still struggling to prepare for passing 310-081 certification exam, at this moment ITCertKing can help you solve problem. ITCertKing can provide you training materials with good quality to help you pass the exam, then you will become a good SUN 310-081 certification member. If you have decided to upgrade yourself by passing SUN certification 310-081 exam, then choosing ITCertKing is not wrong. Our ITCertKing promise you that you can pass your first time to participate in the SUN certification 310-081 exam and get SUN 310-081 certification to enhance and change yourself.

310-081 certification exam is a very import component SUN certification exam. But passing SUN certification 310-081 exam is not so simple. In order to give to relieve pressure and save time and effort for candidates who take a preparation for the 310-081 certification exam, ITCertKing specially produce a variety of training tools. So you can choose an appropriate quick training from ITCertKing to pass the exam.

310-081 Free Demo Download: http://www.itcertking.com/310-081_exam.html

NO.1 A collection of products is stored in the ServletContext in an attribute called catalog.
Which JSTL code structure iterates over each product in the collection and prints out the names of the
products in an un-ordered list?
A.<ul>
<c:for var='product' items='${catalog}'>
<li><%= product.getName() %></li>
</c:for>
</ul>
B.<ul>
<c:for id='product' collection='${catalog}'>
<li><%= product.getName() %></li>
</c:for>
</ul>
C.<ul>
<c:forEach var='product' items='${catalog}'>
<li><%= product.getName() %></li>
</c:forEach>
</ul>
D.<ul>
<c:forEach id='product' collection='${catalog}'>
<li><%= product.getName() %></li>
</c:forEach>
</ul>
Answer: C

SUN   310-081   310-081

NO.2 Under what two circumstances is the setJspBody method NOT called in a tag class that implements the
SimpleTag interface? (Choose two.)
A.The tag is invoked without a body.
B.The doTag method throws an exception.
C.The element has the value empty.
D.The tag is called with the attribute skip-body=true.
Answer: AC

SUN   310-081 certification training   310-081   310-081   310-081

NO.3 Given the definition of MyObject and that an instance of MyObject is bound as a session attribute:
Which is true?
A.Only a single instance of MyObject may exist within a session.
B.The unbound method of the MyObject instance is called when the session to which it is bound times
out.
C.The com.example.MyObject must be declared as a servlet event listener in the web application
deployment descriptor.
D.The valueUnbound method of the MyObject instance is called when the session to which it is bound
times out.
Answer: D

SUN   310-081 certification training   310-081   310-081 study guide

NO.4 Which HTTP method represents a request for information about the supported methods on an HTTP
server?
A.GET
B.INFO
C.HEAD
D.TRACE
E.OPTIONS
Answer: E

SUN test questions   310-081 questions   310-081 certification training   310-081   310-081

NO.5 Given:
Which retrieves the binary input stream on line 13?
A.request.getWriter();
B.request.getReader();
C.request.getInputStream();
D.request.getResourceAsStream();
E.request.getResourceAsStream(ServletRequest.REQUEST);
Answer: C

SUN dumps   310-081 certification training   310-081 practice test

NO.6 Which two HTTP methods are used to process form data in a servlet? (Choose two.)
A.doGet
B.doPut
C.doPost
D.doTrace
E.doSubmit
F.doProcess
Answer: AC

SUN test   310-081 original questions   310-081   310-081 test questions

NO.7 Which two prevent a servlet from handling requests? (Choose two.)
A.The servlet's init method returns a non-zero status.
B.The servlet's init method throws a ServletException.
C.The servlet's init method sets the ServletResponse's content length to 0.
D.The servlet's init method sets the ServletResponse's content type to null.
E.The servlet's init method does NOT return within a time period defined by the servlet container.
Answer: BE

SUN   310-081   310-081   310-081 certification training   310-081 demo

NO.8 A developer wants to use EL to invoke a function using ${my:bloof("foof")}.
Which is always true?
A.The method invoked by this function must be static.
B.The function class must implement the Function interface.
C.The expression is NOT a valid EL expression for invoking a function.
D.The function must be declared in a web.xml file using the <function> element.
E.The function class must have a method with the signature:
Answer: A

SUN   310-081 demo   310-081   310-081   310-081

NO.9 Which retrieves all cookies sent in a given HttpServletRequest request?
A.request.getCookies()
B.request.getAttributes()
C.request.getSession().getCookies()
D.request.getSession().getAttributes()
Answer: A

SUN study guide   310-081   310-081 braindump   310-081 test questions

NO.10 Given an HttpServletRequest request, which retrieves an object of type Account with an ID of
"account"?
A.Account account = request.getResource("account");
B.Account account = request.getAttribute("account");
C.Account account = request.getParameter("account");
D.Account account = (Account)request.getResource("account");
E.Account account = (Account)request.getAttribute("account");
F.Account account = (Account)request.getParameter("account");
Answer: E

SUN   310-081   310-081

NO.11 A web resource called foo.jsp requires two request parameters (P1 and P2). Construct the JSP code
to forward to the foo.jsp resource.
Answer:

NO.12 Given a request from mybox.example.com, with an IP address of 10.0.1.11 on port 33086, place the
appropriate ServletRequest methods onto their corresponding return values.

NO.13 Place the code snippets onto the first line to form a directive to use a custom tag library in a JSP page.
Answer:

NO.14 Given:
Which code snippet inserted at line 12 causes the client to redirect to http://www.example.com?
A.response.sendRedirect("http://www.example.com");
B.response.sendRedirect(new URL("http://www.example.com"));
C.RequestDispatcher rd =
getServletContext().getRequestDispatcher(
"http://www.example.com");
rd.forward(request, response);
D.RequestDispatcher rd =
Answer: A

SUN test answers   310-081 pdf   310-081

NO.15 Place the code snippets in the proper order to construct the JSP code to include dynamic content into
a JSP page at request-time.
Answer:

NO.16 Given a servlet mapped to /control, place the correct URI segment returned as a String on the
corresponding HttpServletRequest method call for the URI: /myapp/control/processorder.

NO.17 Which HTTP method has the characteristic that multiple identical requests may produce side effects
beyond those of a single request?
A.PUT
B.GET
C.INFO
D.POST
E.HEAD
F.TRACE
Answer: D

SUN   310-081 test questions   310-081

NO.18 Which two are characteristics of the Intercepting Filter pattern? (Choose two.)
A.It provides centralized request handling for incoming requests.
B.It forces resource authentication to be distributed across web components.
C.It reduces coupling between presentation-tier clients and underlying business services.
D.It can be added and removed unobtrusively, without requiring changes to existing code.
E.It allows preprocessing and postprocessing on the incoming requests and outgoing responses.
Answer: DE

SUN   310-081 pdf   310-081   310-081   310-081 pdf   310-081 exam prep

NO.19 Given a servlet OrderServlet mapped to processorder, and a form declaration in HTML:
What OrderServlet method is invoked as a result of this form submission?
A.doGet
B.doPut
C.doPost
D.doTrace
E.doSubmit
Answer: A

SUN   310-081   310-081   310-081   310-081 braindump   310-081 certification training

NO.20 Place the events in the order they occur.
Answer:

NO.21 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)
Answer: B

SUN   310-081 demo   310-081

NO.22 Given:
Which two are true? (Choose two.)
A.The foo initialization parameter CANNOT be set programmatically.
B.Compilation fails because getInitParameter returns type Object.
C.The foo initialization parameter is NOT a servlet initialization parameter.
D.Compilation fails because ServletContext does NOT have a getInitParameter method.
E.The foo parameter must be defined within the <servlet> element of the deployment descriptor.
F.The foo initialization parameter can also be retrieved using getServletConfig().getInitParameter("foo").
Answer: AC

SUN answers real questions   310-081 answers real questions   310-081 test questions   310-081 certification training

NO.23 Click the Exhibit button.
Which statement, inserted at line 11, 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.getParameters("foo")[1];
E.second = request.getParameterValues("foo")[1];
Answer: E

SUN exam simulations   310-081 test questions   310-081 exam   310-081

NO.24 Which three are valid URL mappings to a servlet in a web deployment descriptor? (Choose three.)
A.*/*
B./*.do
C.MyServlet
D./MyServlet
E./MyServlet/*
F.MyServlet/*.jsp
Answer: BDE

SUN   310-081 pdf   310-081

NO.25 For an HttpServletResponse response, which two create a custom header? (Choose two.)
A.response.setHeader("X-MyHeader", "34");
B.response.addHeader("X-MyHeader", "34");
C.response.setHeader(new HttpHeader("X-MyHeader", "34"));
D.response.addHeader(new HttpHeader("X-MyHeader", "34"));
E.response.addHeader(new ServletHeader("X-MyHeader", "34"));
F.response.setHeader(new ServletHeader("X-MyHeader", "34"));
Answer: AB

SUN   310-081 exam dumps   310-081 exam   310-081

NO.26 Given an HttpServletRequest request and HttpServletResponse response, which sets a cookie
"username" with the value "joe" in a servlet?
A.request.addCookie("username", "joe")
B.request.setCookie("username", "joe")
C.response.addCookie("username", "joe")
D.request.addHeader(new Cookie("username", "joe"))
E.request.addCookie(new Cookie("username", "joe"))
F.response.addCookie(new Cookie("username", "joe"))
G.response.addHeader(new Cookie("username", "joe"))
Answer: F

SUN certification   310-081   310-081

NO.27 Place the XML elements in the web application deployment descriptor solution to configure a servlet
context event listener named com.example.MyListener.
Answer:

NO.28 For a given ServletResponse response, which two retrieve an object for writing text data? (Choose
two.)
A.response.getWriter()
B.response.getOutputStream()
C.response.getOutputWriter()
D.response.getWriter().getOutputStream()
E.response.getWriter(Writer.OUTPUT_TEXT)
lled with the attribute skip-body=true.
Answer: AB

SUN   310-081   310-081   310-081   310-081 test questions   310-081

NO.29 Which two are valid values for the <transport-guarantee> element inside a <security-constraint>
element of a web application deployment descriptor? (Choose two.)
A.NULL
B.SECURE
C.INTEGRAL
D.ENCRYPTED
E.CONFIDENTIAL
Answer: CE

SUN exam simulations   310-081 exam   310-081   310-081 practice test

NO.30 Given a header in an HTTP request:
X-Retries: 4
Which two retrieve the value of the header from a given ServletRequest request? (Choose two.)
A.request.getHeader("X-Retries")
B.request.getIntHeader("X-Retries")
C.request.getRequestHeader("X-Retries")
D.request.getHeaders("X-Retries").get(0)
E.request.getRequestHeaders("X-Retries").get(0)
Answer: AB

SUN   310-081   310-081   310-081 original questions

ITCertKing offer the latest 000-783 exam material and high-quality 000-226 pdf questions & answers. Our C-TSCM62-65 VCE testing engine and CUR-009 study guide can help you pass the real exam. High-quality 70-463 dumps training materials can 100% guarantee you pass the exam faster and easier. Pass the exam to obtain certification is so simple.

Article Link: http://www.itcertking.com/310-081_exam.html

没有评论:

发表评论