Question 6 of 92
A backing bean for a page must hold its value over multiple requests for the current user. Which three bean scopes are applicable? (Choose three.)
    Correct Answer: C, D, E

Question 7 of 92
Identify three statements that are true about JSF. (Choose three.)
    Correct Answer: A, B, D

Question 8 of 92
Your page contains the following code that is invoked on an action by the current user:
<af:setPropertyListener from="#{applicant:surname}" to="#(...)" type="action"/>
To receive the value from the to property of the af:setPropertyListener, you create a managed bean as follows: package view; public class Employee {
String lastName;
public void setLastName(String lastName) { this.lastName = lastName; } public String getLastName() { return lastName;
}
In the adfc-onfig.xml file, the managed bean is configured as:>
<managed-bean>
<managed-bean-name>emp</managed-bean-name>
<managed-bean-class>view. Employee</managed-bean-class>
<managed bean-scope>pageFlowScope</managed-bean-scope>
</managed-bean>
What EL expression would you write in the af:setPropertyListener "to" property to write the value to the lastName string of the Employee class?
(Choose the best answer.)
    Correct Answer: C

Question 9 of 92
Consider the following code:
Exam 1z0-419: Question 9 - Image 1
At run time, a user modifies the value in the af:inputText control, then presses af:commandButton.
Assuming no errors are raised, which option represents the managed bean code invoked in the correct order? (Choose the best answer.)
    Correct Answer: C

Question 10 of 92
Which three options does an entity object automatically implement? (Choose three.)
    Correct Answer: A, B, C