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 131:

    You need to create a servlet filter that stores all request headers to a database for all requests to the web application's home page "/index.jsp". Which HttpServletRequest method allows you to retrieve all of the request headers?

    A. String[] getHeaderNames()

    B. String[] getRequestHeaders()

    C. java.util.Iterator getHeaderNames()

    D. java.util.Iterator getRequestHeaders()

    E. java.util.Enumeration getHeaderNames()

    F. java.util.Enumeration getRequestHeaders()

  • Question 132:

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

  • Question 133:

    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="answer2797047" style="display: none"><p>Correct Answer: E </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797047"> </div> </li> <li> <h4>Question 134: </h4> <p><p>A JSP page needs to instantiate a JavaBean to be used by only that page. Which two jsp:useBean attributes must be used to access this attribute in the JSP page? (Choose two.) </p><p>A. id </p><p>B. type </p><p>C. name </p><p>D. class </p><p>E. scope </p><p>F. create </p></p> <div class="answer" id="answer2797048" style="display: none"><p>Correct Answer: AD </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797048"> </div> </li> <li> <h4>Question 135: </h4> <p><p>Click the Exhibit button. </p><p>Given the HTML form: </p><p>1.</p><p> <html> </p><p>2.</p><p> <body> </p><p>3.</p><p> <form action="submit.jsp"> </p><p>4.</p><p> Name: <input type="text" name="i1"><br> </p><p>5.</p><p> Price: <input type="text" name="i2"><br> </p><p>6.</p><p> <input type="submit"> </p><p>7.</p><p> </form> </p><p>8.</p><p> </body> </p><p>9.</p><p> </html> </p><p>Assume the product attribute does NOT yet exist in any scope. </p><p>Which code snippet, in submit.jsp, instantiates an instance of com.example.Product that contains the results of the form submission? </p><p><img src="https://images.vcedump.com/qas/1Z0-858/1Z0-858-TA_img_6.jpg"/></p><p>A. <jsp:useBean id="com.example.Product" /><jsp:setProperty name="product" property="*" /> </p><p>B. <jsp:useBean id="product" class="com.example.Product" />${product.name = param.i1}$ {product.price = param.i2} </p><p>C. <jsp:useBean id="product" class="com.example.Product"><jsp:setProperty name="product" property="name"param="i1" /><jsp:setProperty name="product" property="price"param="i2" /></ jsp:useBean> </p><p>D. <jsp:useBean id="product" type="com.example.Product"><jsp:setProperty name="product" property="name"value="<%= request.getParameter( "i1" ) %>" /><jsp:setProperty name="product" property="price"value="<%= </p><p>request.getParameter( "i2" ) %>" /></jsp:useBean> </p></p> <div class="answer" id="answer2797049" style="display: none"><p>Correct Answer: C </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797049"> </div> </li> <li> <h4>Question 136: </h4> <p><p>Your web application uses a simple architecture in which servlets handle requests and then forward to a JSP using a request dispatcher. You need to pass information calculated by the servlet to the JSP; furthermore, that JSP uses a custom tag and must also process this information. This information must NOT be accessible to any other servlet, JSP or session in the webapp. How can you accomplish this goal? </p><p>A. Store the data in a public instance variable in the servlet. </p><p>B. Add an attribute to the request object before using the request dispatcher. </p><p>C. Add an attribute to the context object before using the request dispatcher. </p><p>D. This CANNOT be done as the tag handler has no means to extract this data. </p></p> <div class="answer" id="answer2797045" style="display: none"><p>Correct Answer: B </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797045"> </div> </li> <li> <h4>Question 137: </h4> <p><p>A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization? (Choose three.) </p><p>A. id </p><p>B. val </p><p>C. name </p><p>D. param </p><p>E. value </p><p>F. property </p><p>G. attribute </p></p> <div class="answer" id="answer2797046" style="display: none"><p>Correct Answer: CEF </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797046"> </div> </li> <li> <h4>Question 138: </h4> <p><p>Given the web application deployment descriptor elements: </p><p>11.</p><p> <filter> </p><p>12.</p><p> <filter-name>ParamAdder</filter-name> </p><p>13.</p><p> <filter-class>com.example.ParamAdder</filter-class> </p><p>14.</p><p> </filter> ... </p><p>24.</p><p> <filter-mapping> </p><p>25.</p><p> <filter-name>ParamAdder</filter-name> </p><p>26.</p><p> <servlet-name>MyServlet</servlet-name> </p><p>27.</p><p> <!-- insert element here --> </p><p>28.</p><p> </filter-mapping> </p><p>Which element, inserted at line 27, causes the ParamAdder filter to be applied when MyServlet is invoked by another servlet using the RequestDispatcher.include method? </p><p>A. <include/> </p><p>B. <dispatcher>INCLUDE</dispatcher> </p><p>C. <dispatcher>include</dispatcher> </p><p>D. <filter-condition>INCLUDE</filter-condition> </p><p>E. <filter-condition>include</filter-condition> </p></p> <div class="answer" id="answer2797044" style="display: none"><p>Correct Answer: B </p><p> </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797044"> </div> </li> <li> <h4>Question 139: </h4> <p><p>Your web site has many user-customizable features, for example font and color preferences on web pages. Your IT department has already built a subsystem for user preferences using Java SE's lang.util.prefs package APIs and you have been ordered to reuse this subsystem in your web application. You need to create an event listener that stores the user's Preference object when an HTTP session is created. Also, note that user identification information is stored in an HTTP cookie. </p><p>Which partial listener class can accomplish this goal? </p><p>A. public class UserPrefLoader implements HttpSessionListener {public void sessionCreated (HttpSessionEvent se) {MyPrefsFactory myFactory = (MyPrefsFactory) se.getServletContext ().getAttribute("myPrefsFactory");User user = getUserFromCookie(se);myFactory.setThreadLocalUser (user);Preferences userPrefs = myFactory.userRoot();se.getSession().setAttribute("prefs", userPrefs);}// more code here} </p><p>B. public class UserPrefLoader implements SessionListener {public void sessionCreated(SessionEvent se) {MyPrefsFactory myFactory = (MyPrefsFactory) se.getContext().getAttribute("myPrefsFactory");User user = getUserFromCookie (se);myFactory.setThreadLocalUser(user);Preferences userPrefs = myFactory.userRoot ();se.getSession().addAttribute("prefs", userPrefs);}// more code here} </p><p>C. public class UserPrefLoader implements HttpSessionListener {public void sessionInitialized (HttpSessionEvent se) {MyPrefsFactory myFactory = (MyPrefsFactory) se.getServletContext ().getAttribute("myPrefsFactory");User user = getUserFromCookie(se);myFactory.setThreadLocalUser (user);Preferences userPrefs = myFactory.userRoot();se.getHttpSession().setAttribute("prefs", userPrefs);}// more code here} </p><p>D. public class UserPrefLoader implements SessionListener {public void sessionInitialized(SessionEvent se) {MyPrefsFactory myFactory = (MyPrefsFactory) se.getServletContext().getAttribute ("myPrefsFactory");User user = getUserFromCookie(se);myFactory.setThreadLocalUser (user);Preferences userPrefs = myFactory.userRoot();se.getSession().addAttribute("prefs", userPrefs);}// more code here} </p></p> <div class="answer" id="answer2797043" style="display: none"><p>Correct Answer: A </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797043"> </div> </li> <li> <h4>Question 140: </h4> <p><p>You have a use case in your web application that adds several session-scoped attributes. At the end of the use case, one of these objects, the manager attribute, is removed and then it needs to decide which of the other session-scoped attributes to remove. </p><p>How can this goal be accomplished? </p><p>A. The object of the manager attribute should implement the HttpSessionBindingListener and it should call the removeAttribute method on the appropriate session attributes. </p><p>B. The object of the manager attribute should implement the HttpSessionListener and it should call the removeAttribute method on the appropriate session attributes. </p><p>C. The object of the manager attribute should implement the HttpSessionBindingListener and it should call the deleteAttribute method on the appropriate session attributes. </p><p>D. The object of the manager attribute should implement the HttpSessionListener and it should call the deleteAttribute method on the appropriate session attributes. </p></p> <div class="answer" id="answer2797041" style="display: none"><p>Correct Answer: A </p></div> <div class="button"> <input type="button" class="btn btn-primary answer-btn" value="SHOW ANSWERS" data-id="2797041"> </div> </li> </ul> </div> </div><!-- work-history --> <div class="text-center"><ul class="pagination "><li><a href="/exam/1Z0-858.html?page=13" 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=13" rel="nofollow">13</a></li><li class="active"><a href="#">14</a></li><li><a href="/exam/1Z0-858.html?page=15" rel="nofollow">15</a></li><li><a href="/exam/1Z0-858.html?page=16" rel="nofollow">16</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=15" 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="97437bc06dc148c2e9e202f0-|49" defer></script>