Exam Details

  • Exam Code
    :1Z0-858
  • Exam Name
    :Java Enterprise Edition 5 Web Component Developer Certified Professional
  • Certification
    :Oracle Certifications
  • Vendor
    :Oracle
  • Total Questions
    :276 Q&As
  • Last Updated
    :Mar 31, 2025

Oracle Oracle Certifications 1Z0-858 Questions & Answers

  • Question 111:

    You are creating a library of custom tags that mimic the HTML form tags. When the user submits a form that fails validation, the JSP form is forwarded back to the user. The tag must support the ability to re-populate the form field with the request parameters from the user's last request. For example, if the user entered "Samantha" in the text field called firstName, then the form is re- populated like this:

    Which tag handler method will accomplish this goal?

    A. public int doStartTag() throws JspException {JspContext ctx = getJspContext();String value = ctx.getParameter(this.name);if ( value == null ) value = "";JspWriter out = pageContext.getOut();try {out.write(String.format(INPUT, this.name, value));} (Exception e) { throw new JspException(e); } return SKIP_BODY;}private static String INPUT= "";

    B. public void doTag() throws JspException {JspContext ctx = getJspContext();String value = ctx.getParameter(this.name);if ( value == null ) value = "";JspWriter out = pageContext.getOut();try {out.write(String.format(INPUT, this.name, value));} (Exception e) { throw new JspException(e); }} private static String INPUT= "";

    C. public int doStartTag() throws JspException {ServletRequet request = pageContext.getRequest();String value = request.getParameter(this.name);if ( value == null ) value = "";JspWriter out = pageContext.getOut();try {out.write (String.format(INPUT, this.name, value));} (Exception e) { throw new JspException(e); }return SKIP_BODY;}private static String INPUT= "";

    D. public void doTag() throws JspException { ServletRequet request = pageContext.getRequest();String value = request.getParameter(this.name);if ( value == null ) value = "";JspWriter out = pageContext.getOut();try {out.write(String.format (INPUT, this.name, value));} (Exception e) { throw new JspException(e); }}private static String INPUT= "";

  • Question 112:

    Which two directives are applicable only to tag files? (Choose two.)

    A. tag

    B. page

    C. taglib

    D. include

    E. variable

  • Question 113:

    The tl:taskList and tl:task tags output a set of tasks to the response and are used as follows:

    11.

    12.

    13.

    14.

    15.

    The tl:task tag supplies information about a single task while the tl:taskList tag does the final output. The tag handler for tl:taskList is TaskListTag. The tag handler for tl:task is TaskTag. Both tag handlers extend BodyTagSupport. Which allows the tl:taskList tag to get the task names from its nested tl:task children?

    A. It is impossible for a tag handler that extends BodyTagSupport to communicate with its parent and child tags.

    B. In the TaskListTag.doStartTag method, call super.getChildTags() and iterate through the results. Cast each result to a TaskTag and call getName().

    C. In the TaskListTag.doStartTag method, call getChildTags() on the PageContext and iterate through the results. Cast each result to a TaskTag and call getName().

    D. Create an addTaskName method in TaskListTag. Have the TaskListTag.doStartTag method, return BodyTag.EVAL_BODY_BUFFERED. In the TaskTag.doStartTag method, call super.getParent(), cast it to a TaskListTag, and call addTaskName().

    E. Create an addTaskName method in TaskListTag. Have the TaskListTag.doStartTag method, return BodyTag.EVAL_BODY_BUFFERED. In the TaskTag.doStartTag method, call findAncestorWithClass() on the PageContext, passing TaskListTag as the class to find. Cast the result to TaskListTag and call addTaskName().

  • Question 114:

    Click the Exhibit button.

    Given:

    10.

    11.

    Product Name:

    12.

    Product Price:

    13.

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

    A. id

    B. name

    C. type

    D. param

    E. property

    F. reqParam

    G. attribute

  • Question 115:

    Given:

    1.

    package com.example;

    2.

    3.

    public abstract class AbstractItem {

    4.

    private String name; ...

    13. }

    Assume a concrete class com.example.ConcreteItem extends com.example.AbstractItem. A servlet sets a session-scoped attribute called "item" that is an instance of com.example.ConcreteItem and then forwards to a JSP page.

    Which two are valid standard action invocations that expose a scripting variable to the JSP page? (Choose two.)

    A.

    B.

    C.

    D.

  • Question 116:

    Your web application views all have the same header, which includes the tag in the <head> element of the rendered HTML. You have decided to remove this redundant HTML code from your JSPs and put it into a single JSP called / WEB-INF/jsp/header.jsp. However, the title of each page is unique, so you have decided to use a variable called pageTitle to parameterize this in the header JSP, like this: </p><p>10. <title>${param.pageTitle}<title> </p><p>Which JSP code snippet should you use in your main view JSPs to insert the header and pass the pageTitle variable? </p><p>A. <jsp:insert page='/WEB-INF/jsp/header.jsp'>${pageTitle='Welcome Page'}</jsp:insert> </p><p>B. <jsp:include page='/WEB-INF/jsp/header.jsp'>${pageTitle='Welcome Page'}</jsp:include> </p><p>C. <jsp:include file='/WEB-INF/jsp/header.jsp'>${pageTitle='Welcome Page'}</jsp:include> </p><p>D. <jsp:insert page='/WEB-INF/jsp/header.jsp'><jsp:param name='pageTitle' value='Welcome Page' /></ jsp:insert> </p><p>E. <jsp:include page='/WEB-INF/jsp/header.jsp'><jsp:param name='pageTitle' value='Welcome Page' /></ jsp:include> </p></p> <div class="answer" id="answer2797072" style="display: none"><p>Correct Answer: E </p><p> </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797072"> </div> </li> <li> <h4>Question 117: </h4> <p><p>Click the Exhibit button. </p><p>Given the JSP code: </p><p>1.</p><p> <% </p><p>2.</p><p> pageContext.setAttribute( "product", </p><p>3.</p><p> new com.example.Product( "Pizza", 0.99 ) ); </p><p>4.</p><p> %> </p><p>5.</p><p> <%-- insert code here --%> </p><p>Which two, inserted at line 5, output the name of the product in the response? (Choose two.) </p><p><img src="https://images.vcedump.com/qas/1Z0-858/1Z0-858-TA_img_9.jpg"/></p><p>A. <%= product.getName() %> </p><p>B. <jsp:useBean id="product" class="com.example.Product" /><%= product.getName() %> </p><p>C. <jsp:useBean id="com.example.Product" scope="page"><%= product.getName() %></jsp:useBean> </p><p>D. <jsp:useBean id="product" type="com.example.Product"scope="page" /><%= product.getName() %> </p><p>E. <jsp:useBean id="product" type="com.example.Product"><%= product.getName() %></jsp:useBean> </p></p> <div class="answer" id="answer2797073" style="display: none"><p>Correct Answer: BD </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797073"> </div> </li> <li> <h4>Question 118: </h4> <p><p>If you want to use the Java EE platform's built-in type of authentication that uses a custom HTML page for authentication, which two statements are true? (Choose two.) </p><p>A. Your deployment descriptor will need to contain this tag:<auth-method>CUSTOM</auth-method>. </p><p>B. The related custom HTML login page must be named loginPage.html. </p><p>C. When you use this type of authentication, SSL is turned on automatically. </p><p>D. You must have a tag in your deployment descriptor that allows you to point to both a login HTML page and an HTML page for handling any login errors. </p><p>E. In the HTML related to authentication for this application, you must use predefined variable names for the variables that store the user and password values. </p></p> <div class="answer" id="answer2797074" style="display: none"><p>Correct Answer: DE </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797074"> </div> </li> <li> <h4>Question 119: </h4> <p><p>Given the two security constraints in a deployment descriptor: </p><p>101.</p><p> <security-constraint> </p><p>102.</p><p> <!--a correct url-pattern and http-method goes here--> 103. <auth-constraint><role-name>SALES</ role-name></auth- 103. <auth-constraint> </p><p>104.</p><p> <role-name>SALES</role-name> </p><p>105.</p><p> </auth-constraint> </p><p>106.</p><p> </security-constraint> </p><p>107.</p><p> <security-constraint> </p><p>108.</p><p> <!--a correct url-pattern and http-method goes here--> 109. <!-- Insert an auth-constraint here --> 110. </security-constraint> </p><p>If the two security constraints have the same url-pattern and http-method, which two, inserted independently at line 109, will allow users with role names of either SALES or MARKETING to access this resource? (Choose two.) </p><p>A. <auth-constraint/> </p><p>B. <auth-constraint><role-name>*</role-name></auth-constraint> </p><p>C. <auth-constraint><role-name>ANY</role-name></auth-constraint> </p><p>D. <auth-constraint><role-name>MARKETING</role-name></auth-constraint> </p></p> <div class="answer" id="answer2797075" style="display: none"><p>Correct Answer: BD </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797075"> </div> </li> <li> <h4>Question 120: </h4> <p><p>Which two are valid values for the <transport-guarantee> element inside a <security-constraint> element of a web application deployment descriptor? (Choose two.) </p><p>A. NULL </p><p>B. SECURE </p><p>C. INTEGRAL </p><p>D. ENCRYPTED </p><p>E. CONFIDENTIAL </p></p> <div class="answer" id="answer2797076" style="display: none"><p>Correct Answer: CE </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797076"> </div> </li> </ul> </div> </div><!-- work-history --> <div class="text-center"><ul class="pagination "><li><a href="/exam/1Z0-858.html?page=11" rel="nofollow"><i class="fa fa-chevron-left"></i></a></li><li><a href="/exam/1Z0-858.html">1</a></li><li><a href="/exam/1Z0-858.html?page=2">2</a></li><li class="dian"><a>...</a></li><li><a href="/exam/1Z0-858.html?page=11" rel="nofollow">11</a></li><li class="active"><a href="#">12</a></li><li><a href="/exam/1Z0-858.html?page=13" rel="nofollow">13</a></li><li><a href="/exam/1Z0-858.html?page=14" rel="nofollow">14</a></li><li class="dian"><a>...</a></li><li><a href="/exam/1Z0-858.html?page=27" rel="nofollow">27</a></li><li><a href="/exam/1Z0-858.html?page=28" rel="nofollow">28</a></li><li><a href="/exam/1Z0-858.html?page=13" rel="nofollow"><i class="fa fa-chevron-right"></i></a></li></ul></div> <div class="special-qualification: section"> <div class="icons"> <i class="fa fa-thumbs-o-up" aria-hidden="true"></i> </div> <div class="personal-info"> <h3>Related Exams:</h3> <ul class="address"> <li><h5><a href="https://www.vcedump.com/1z0-020.html">1Z0-020</a></h5> <a href="https://www.vcedump.com/1z0-020.html" style="color: #2d3038">Oracle8i: New Features for Administrators</a></li> <li><h5><a href="https://www.vcedump.com/1z0-023.html">1Z0-023</a></h5> <a href="https://www.vcedump.com/1z0-023.html" style="color: #2d3038">Architecture and Administration</a></li> <li><h5><a href="https://www.vcedump.com/1z0-024.html">1Z0-024</a></h5> <a href="https://www.vcedump.com/1z0-024.html" style="color: #2d3038">Performance Tuning</a></li> <li><h5><a href="https://www.vcedump.com/1z0-025.html">1Z0-025</a></h5> <a href="https://www.vcedump.com/1z0-025.html" style="color: #2d3038">Backup and Recovery</a></li> <li><h5><a href="https://www.vcedump.com/1z0-026.html">1Z0-026</a></h5> <a href="https://www.vcedump.com/1z0-026.html" style="color: #2d3038">Network Administration</a></li> <li><h5><a href="https://www.vcedump.com/1z0-034.html">1Z0-034</a></h5> <a href="https://www.vcedump.com/1z0-034.html" style="color: #2d3038">Upgrade Oracle9i/10g OCA to Oracle Database OCP</a></li> <li><h5><a href="https://www.vcedump.com/1z0-036.html">1Z0-036</a></h5> <a href="https://www.vcedump.com/1z0-036.html" style="color: #2d3038">Managing Oracle9i on Linux</a></li> <li><h5><a href="https://www.vcedump.com/1z0-041.html">1Z0-041</a></h5> <a href="https://www.vcedump.com/1z0-041.html" style="color: #2d3038">Oracle Database 10g: DBA Assessment</a></li> <li><h5><a href="https://www.vcedump.com/1z0-052.html">1Z0-052</a></h5> <a href="https://www.vcedump.com/1z0-052.html" style="color: #2d3038">Oracle Database 11g: Administration Workshop I</a></li> <li><h5><a href="https://www.vcedump.com/1z0-053.html">1Z0-053</a></h5> <a href="https://www.vcedump.com/1z0-053.html" style="color: #2d3038">Oracle Database 11g: Administration II</a></li> </ul> </div> </div><!-- educational-background --> <div class="declaration section"> <div class="icons"> <i class="fa fa-hand-peace-o" aria-hidden="true"></i> </div> <div class="declaration-info"> <h3>Tips on How to Prepare for the Exams</h3> <p>Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Oracle exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 1Z0-858 exam preparations and Oracle certification application, do not hesitate to visit our Vcedump.com to find your solutions here. </p> </div> </div><!-- career-objective --> </div><!-- resume-content --> </div><!-- container --> </section><!-- ad-profile-page --> <script type="text/javascript" src="/js/UAAAAAOCOyHhADO0j.js"></script> <footer id="footer" class="clearfix"> <!-- footer-top --> <!--section class="footer-top clearfix"> <div class="container"> <div class="row"> <!-- footer-widget --> <!--div class="col-sm-3"> <div class="footer-widget"> <h3>Quik Links</h3> <ul> <li><a href="/about-us.html">About Us</a></li> <li><a href="#">Contact Us</a></li> <li><a href="#">Careers</a></li> <li><a href="#">All Cities</a></li> <li><a href="#">Help & Support</a></li> <li><a href="#">Advertise With Us</a></li> </ul> </div> </div--><!-- footer-widget --> <!-- footer-widget --> <!--div class="col-sm-3"> <div class="footer-widget"> <h3>How to sell fast</h3> <ul> <li><a href="#">How to sell fast</a></li> <li><a href="#">Membership</a></li> <li><a href="#">Banner Advertising</a></li> <li><a href="#">Promote your ad</a></li> <li><a href="#">Jobs Delivers</a></li> <li><a href="#">FAQ</a></li> </ul> </div> </div><!-- footer-widget --> <!-- footer-widget --> <!--div class="col-sm-3"> <div class="footer-widget social-widget"> <h3>Follow us on</h3> <ul> <li><a href="#"><i class="fa fa-facebook-official"></i>Facebook</a></li> <li><a href="#"><i class="fa fa-twitter-square"></i>Twitter</a></li> <li><a href="#"><i class="fa fa-google-plus-square"></i>Google+</a></li> <li><a href="#"><i class="fa fa-youtube-play"></i>youtube</a></li> </ul> </div> </div><!-- footer-widget --> <!-- footer-widget --> <!--div class="col-sm-3"> <div class="footer-widget news-letter"> <h3>Newsletter</h3> <p>Jobs is Worldest leading Portal platform that brings!</p> <!-- form --> <!--form action="/newsletter/add" method="post"> <input type="email" class="form-control" placeholder="Your email id" name="email"> <button type="submit" class="btn btn-primary">Sign Up</button> </form><!-- form --> <!--/div> </div><!-- footer-widget --> <!--/div><!-- row --> <!--/div><!-- container --> <!--/section><!-- footer-top --> <div class="footer-bottom clearfix text-center"> <div class="container"> <p>Copyright © <a href="/">VCEDUMP.COM</a> 2025</p> </div> </div><!-- footer-bottom --> </footer><!-- footer --> <!-- JS --> <script src="/js/bootstrap.min.js"></script> <script src="/js/price-range.js"></script> <script src="/js/main.js"></script> <script src="/js/switcher.js"></script> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-MD8L8FYY2G"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-MD8L8FYY2G'); </script> </body> </html><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="62a2a80690388fc5066ae8c3-|49" defer></script>