READ Free Dumps For Oracle- 1z0-899
Question ID 4685 | Which EL expression evaluates to the request URI? |
Option A | A. ${requestURI} |
Option B | B. ${request.URI} |
Option C | C. ${request.getURI} |
Option D | D. ${request.requestURI} |
Option E | E. ${requestScope.requestURI} |
Option F | F. ${pageContext.request.requestURI} |
Correct Answer | F |
Question ID 4686 | You are building a dating web site. The client’s date of birth is collected along with lots of other information. The Person class has a derived method, getAge() :int, which returns the person’s age calculated from the date of birth and today’s date. In one of your JSPs you need to print a special message to clients within the age group of 25 through 35. |
Option A | A. ${client.age in [25,35]} |
Option B | B. ${client.age between [25,35]} |
Option C | C. ${client.age between 25,35} |
Option D | D. ${client.age <= 35 && client.age >= 25} |
Option E | E. ${client.age le 35 and client.age ge 25} |
Option F | F. ${client.age > 35 && client.age < 25} |
Correct Answer | D,E |