Identify three statements that are true about JSF. (Choose three.)
A.
Components are used to define page structure.
B.
Navigation between pages is defined outside of the JSF page in the metadata.
C.
Managed beans can have only one of two memory scopes.
D.
Managed beans can be accessed from more than one page.
E.
JSF does not support template creation for pages.
Explanation:
Incorrect:
Not C: Managed beans can have the following scopes: Application, session, PageFlow, view, request,
BackingBean.
Not E: JavaServer Faces (JSF) technology provides the tools to implement user interfaces that are easy to
extend and reuse. Templating is a useful Facelets feature that allows you to create a page that will act as the
base, or template, for the other pages in an application. By using templates, you can reuse code and avoid
recreating similarly constructed pages. Templating also helps in maintaining a standard look and feel in an
application with a large number of pages.
http://docs.oracle.com/javaee/6/tutorial/doc/giqxp.html