Question 32 of 72 from exam 1Z0-900: Java EE 7 Application Developer

Question 32 of 72 from exam 1Z0-900: Java EE 7 Application Developer

Question

Given the set of navigation rules:

<navigation-rule>
<from-view-id>list-widgets</from-view-id>
<navigation-case>
<from-outcome>add</from-outcome>
<to-view-id>add-widget</to-view-id>
</navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>home</from-outcome>
<to-view-id>home</to-view-id>
</navigation-case>
<navigation-case>
<from-outcome>logout</from-outcome>
<to-view-id> goodbye</to-view-id>
</navigation-rule>
<navigation-rule>
<from-view-id>home</from-view-id>
<navigation-case>
<from-outcome>dashboard</from-outcome>
<to-view-id>dashboard</to-view-id>
</navigation-case>
<navigation-case>
<from-outcome>list</from-outcome>
<to-view-id>list-widgets</to-view-id>
</navigation-case>
</navigation-rule>

Which two define a valid flow of view IDs through the application? (Choose two.)

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

CD.