READ Free Dumps For Oracle- 1z0-899
Question ID 4683 | You are working on a JSP that is intended to inform users about critical errors in the system. The JSP code is attempting to access the exception that represents the cause of the problem, but your IDE is telling you that the variable does not exist. What should you do to address this problem? |
Option A | A. Add a page directive stating that this page is an error handler |
Option B | B. Add scriptlet code to create a variable that refer to the exception |
Option C | C. Add a <jsp:useBean tag to declare the and access the exception> |
Option D | D. Perform the error handling in a servlet rather than in the JSP |
Option E | E. Edit the page that caused the error to ensure that it specifies this page as its error handler |
Correct Answer | A |
Question ID 4684 | All of your JSPs need to have a link that permits users to email the web master. This web application is licensed to many small businesses, each of which have a different email address for the web master. You have decided to use a context parameter that you specify in the deployment descriptor, like this: |
Option A | A. <a href=‘mailto:${contextParam.webmaterEmail}’>contact us</a> |
Option B | B. <a href=‘mailto:${applicationScope.webmaterEmail}’>contact us</a> |
Option C | C. <a href=‘mailto:${contextInitParam.webmaterEmail}’>contact us</a> |
Option D | D. <a href=‘mailto:${initParam.webmaterEmail}’>contact us</a> |
Correct Answer | D |