Which tag must enclose all other tags on a Faces JSP page?
-
<f:faces>
-
<f:view>
-
<h:jsf>
-
<h:view>
B
Correct answer
Explanation
In JSF (JavaServer Faces), the tag is the required root element that encloses all other JSF component tags on a JSP page. It represents the UIViewRoot component and is essential for the JSF lifecycle to process the page correctly. The 'h' prefix typically refers to HTML components, while 'f' refers to core JSF components.